diff --git a/.github/workflows/search.yml b/.github/workflows/search.yml index 9d5aa59959ae6..7baa26f498144 100644 --- a/.github/workflows/search.yml +++ b/.github/workflows/search.yml @@ -45,6 +45,7 @@ jobs: sparse-checkout: | apps/docs apps/www/.env.local.example + examples supabase - uses: pnpm/action-setup@v4 @@ -63,7 +64,9 @@ jobs: - name: Update embeddings working-directory: ./apps/docs if: ${{ !inputs.refresh }} - run: pnpm run embeddings + run: | + pnpm run codegen:examples + pnpm run embeddings - name: Refresh embeddings working-directory: ./apps/docs diff --git a/apps/docs/content/guides/deployment/branching/configuration.mdx b/apps/docs/content/guides/deployment/branching/configuration.mdx index 5355264fff2ac..2c2d00a94aec0 100644 --- a/apps/docs/content/guides/deployment/branching/configuration.mdx +++ b/apps/docs/content/guides/deployment/branching/configuration.mdx @@ -34,6 +34,19 @@ supabase --experimental branches create --persistent # Do you want to create a branch named develop? [Y/n] ``` + + +To retrieve the project ID for an existing branch, use the `branches list` command: + +```bash +supabase --experimental branches list +``` + +This will display a table showing all your branches with their corresponding project ID. +Use the value from the `BRANCH PROJECT ID` column as your `project_id` in the remote configuration. + + + ### Configuration merging When merging a PR into a persistent branch, the Supabase integration: @@ -186,6 +199,19 @@ max_rows = 500 pool_size = 25 ``` + + +To retrieve the project ID for an existing branch, use the `branches list` command: + +```bash +supabase --experimental branches list +``` + +This will display a table showing all your branches with their corresponding project ID. +Use the value from the `BRANCH PROJECT ID` column as your `project_id` in the remote configuration. + + + ### Feature branch configuration For feature branches that need specific settings: @@ -200,6 +226,19 @@ client_id = "env(GOOGLE_CLIENT_ID)" secret = "env(GOOGLE_CLIENT_SECRET)" ``` + + +To retrieve the project ID for an existing branch, use the `branches list` command: + +```bash +supabase --experimental branches list +``` + +This will display a table showing all your branches with their corresponding project ID. +Use the value from the `BRANCH PROJECT ID` column as your `project_id` in the remote configuration. + + + ## Next steps - Explore [branching integrations](/docs/guides/deployment/branching/integrations) diff --git a/apps/docs/features/docs/GuidesMdx.template.tsx b/apps/docs/features/docs/GuidesMdx.template.tsx index e7067e6815f6b..76fbe6d397cc5 100644 --- a/apps/docs/features/docs/GuidesMdx.template.tsx +++ b/apps/docs/features/docs/GuidesMdx.template.tsx @@ -90,7 +90,9 @@ const GuideTemplate = ({ meta, content, children, editLink, mdxOptions }: GuideT )}
- {content && } + {content && ( + x} /> + )} {children}