From 7c92c0c9cc7b3f90ae10987652abd68b941bd9f9 Mon Sep 17 00:00:00 2001
From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com>
Date: Mon, 13 Jul 2026 13:11:34 +0000
Subject: [PATCH 1/3] docs: document how to find and switch project ID in
quickstart
---
getting-started/introduction.mdx | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/getting-started/introduction.mdx b/getting-started/introduction.mdx
index a82a7143..cef1cd6f 100644
--- a/getting-started/introduction.mdx
+++ b/getting-started/introduction.mdx
@@ -90,6 +90,18 @@ cerebrium login
This opens your browser so you can authenticate your CLI session.
+
+ Every Cerebrium app is deployed under a **project**. Your project ID has the format `p-xxxxxxxx` and appears in your endpoint URLs like `https://api.aws.us-east-1.cerebrium.ai/v4/{project-id}/{app-name}/{function-name}`. Find it at the top of the [Cerebrium dashboard](https://dashboard.cerebrium.ai).
+
+ If you belong to more than one project, switch the CLI's active project with:
+
+ ```bash
+ cerebrium project set
+ ```
+
+ Use the same command in CI to pin deployments to a specific project — see [CI/CD](/deployments/ci-cd).
+
+
### 3. Initialize a project
```bash
From 77896199b8a0cb347ec7f2bea15ffe204ff45fe2 Mon Sep 17 00:00:00 2001
From: "mintlify[bot]"
Date: Mon, 13 Jul 2026 13:11:47 +0000
Subject: [PATCH 2/3] Prettified Code!
---
getting-started/introduction.mdx | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/getting-started/introduction.mdx b/getting-started/introduction.mdx
index cef1cd6f..4ab3e414 100644
--- a/getting-started/introduction.mdx
+++ b/getting-started/introduction.mdx
@@ -93,13 +93,14 @@ This opens your browser so you can authenticate your CLI session.
Every Cerebrium app is deployed under a **project**. Your project ID has the format `p-xxxxxxxx` and appears in your endpoint URLs like `https://api.aws.us-east-1.cerebrium.ai/v4/{project-id}/{app-name}/{function-name}`. Find it at the top of the [Cerebrium dashboard](https://dashboard.cerebrium.ai).
- If you belong to more than one project, switch the CLI's active project with:
+If you belong to more than one project, switch the CLI's active project with:
- ```bash
- cerebrium project set
- ```
+```bash
+cerebrium project set
+```
+
+Use the same command in CI to pin deployments to a specific project — see [CI/CD](/deployments/ci-cd).
- Use the same command in CI to pin deployments to a specific project — see [CI/CD](/deployments/ci-cd).
### 3. Initialize a project
From 3249a6466584ec5a22e6a68619cce43dc1a1fe33 Mon Sep 17 00:00:00 2001
From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com>
Date: Mon, 13 Jul 2026 13:15:33 +0000
Subject: [PATCH 3/3] style: use active voice in project ID tip
---
getting-started/introduction.mdx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/getting-started/introduction.mdx b/getting-started/introduction.mdx
index 4ab3e414..b9c4de11 100644
--- a/getting-started/introduction.mdx
+++ b/getting-started/introduction.mdx
@@ -91,7 +91,7 @@ cerebrium login
This opens your browser so you can authenticate your CLI session.
- Every Cerebrium app is deployed under a **project**. Your project ID has the format `p-xxxxxxxx` and appears in your endpoint URLs like `https://api.aws.us-east-1.cerebrium.ai/v4/{project-id}/{app-name}/{function-name}`. Find it at the top of the [Cerebrium dashboard](https://dashboard.cerebrium.ai).
+ Every Cerebrium app belongs to a **project**. Your project ID has the format `p-xxxxxxxx` and appears in your endpoint URLs like `https://api.aws.us-east-1.cerebrium.ai/v4/{project-id}/{app-name}/{function-name}`. Find it at the top of the [Cerebrium dashboard](https://dashboard.cerebrium.ai).
If you belong to more than one project, switch the CLI's active project with: