Skip to content

Conversation

@nurul3101
Copy link
Member

@nurul3101 nurul3101 commented Nov 18, 2025

Implements: #DC-6278

Summary by CodeRabbit

  • Documentation
    • Updated Cloudflare D1 setup guide to reflect recommended workflow with Prisma ORM 7 and Wrangler CLI.
    • Simplified migration guidance, consolidating prior dual-approach instructions into a single streamlined process.
    • Reorganized sections and updated configuration examples for clearer setup instructions.

@github-actions
Copy link
Contributor

Dangerous URL check

No absolute URLs to prisma.io/docs found.
No local URLs found.

@coderabbitai
Copy link
Contributor

coderabbitai bot commented Nov 18, 2025

Walkthrough

The changes update Cloudflare D1 documentation and Prisma schema configuration to align with Prisma v7. The migration workflow is reworked from a D1 driver adapter approach to using Wrangler CLI with prisma migrate diff, and the schema generator block now includes runtime = "cloudflare".

Changes

Cohort / File(s) Summary
Cloudflare D1 documentation updates
content/200-orm/050-overview/500-databases/950-cloudflare-d1.mdx, content/800-guides/070-cloudflare-d1.mdx
Restructured Schema migrations sections to replace D1 driver adapter setup with Wrangler CLI and prisma migrate diff guidance. Removed extensive adapter installation and config steps; updated command examples from --to-schema-datamodel to --to-schema. Reorganized workflow narrative to: model schema → generate SQL via migrate diff → apply with Wrangler.
Prisma schema generator configuration
prisma/schema.prisma
Added runtime = "cloudflare" to the generator client block, updating the Prisma client runtime target.

Estimated code review effort

🎯 4 (Complex) | ⏱️ ~45 minutes

  • Verify migration command accuracy: Ensure all prisma migrate diff examples with --to-schema flags are syntactically and semantically correct; confirm --from-empty usage remains appropriate.
  • Workflow completeness: Confirm that the new Wrangler CLI + migrate diff narrative is comprehensive and no critical steps from the old adapter workflow were inadvertently omitted.
  • Generator block implications: Validate that adding runtime = "cloudflare" to the generator block has no unintended side effects on other parts of the schema or build process.
  • Consistency across docs: Check that both documentation files describe the same recommended workflow without contradictions or duplicate guidance.

Possibly related PRs

Pre-merge checks

❌ Failed checks (1 inconclusive)
Check name Status Explanation Resolution
Title check ❓ Inconclusive The title 'Update Cloudflare D1 Guides' is vague and generic, using non-descriptive language that doesn't convey what specifically was updated in the guides. Consider a more specific title that highlights the key change, such as 'Rework Cloudflare D1 migration guidance to favor Wrangler CLI with prisma migrate diff' or 'Update D1 documentation to recommend Wrangler CLI workflow instead of driver adapter approach'.
✅ Passed checks (2 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.

📜 Recent review details

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between c818511 and 7eec629.

📒 Files selected for processing (2)
  • content/200-orm/050-overview/500-databases/950-cloudflare-d1.mdx (5 hunks)
  • content/800-guides/070-cloudflare-d1.mdx (6 hunks)
🧰 Additional context used
🧠 Learnings (6)
📓 Common learnings
Learnt from: ankur-arch
Repo: prisma/docs PR: 7066
File: content/200-orm/200-prisma-client/700-debugging-and-troubleshooting/245-troubleshooting-binary-size-issues.mdx:8-22
Timestamp: 2025-08-11T09:40:55.237Z
Learning: When the queryCompiler preview feature is enabled in Prisma ORM (v6.7.0+), it does not require Rust engines for CLI tools like `prisma migrate` or `prisma db pull`. The previous understanding that CLI tools would still need Rust binaries even with queryCompiler enabled is incorrect.
📚 Learning: 2025-10-09T21:32:50.340Z
Learnt from: aidankmcalister
Repo: prisma/docs PR: 7167
File: content/900-ai/prompts/astro.mdx:84-84
Timestamp: 2025-10-09T21:32:50.340Z
Learning: The `npx prisma init` command supports the following flags: `--db` (shorthand for `--datasource-provider prisma+postgres`), `--output` (specifies output location for generated client), `--generator-provider` (defines the generator provider), `--datasource-provider`, `--url`, `--preview-feature`, and `--with-model`. These are documented valid CLI options for Prisma init command.

Applied to files:

  • content/800-guides/070-cloudflare-d1.mdx
  • content/200-orm/050-overview/500-databases/950-cloudflare-d1.mdx
📚 Learning: 2025-08-11T09:40:55.237Z
Learnt from: ankur-arch
Repo: prisma/docs PR: 7066
File: content/200-orm/200-prisma-client/700-debugging-and-troubleshooting/245-troubleshooting-binary-size-issues.mdx:8-22
Timestamp: 2025-08-11T09:40:55.237Z
Learning: When the queryCompiler preview feature is enabled in Prisma ORM (v6.7.0+), it does not require Rust engines for CLI tools like `prisma migrate` or `prisma db pull`. The previous understanding that CLI tools would still need Rust binaries even with queryCompiler enabled is incorrect.

Applied to files:

  • content/200-orm/050-overview/500-databases/950-cloudflare-d1.mdx
📚 Learning: 2025-10-08T16:23:00.388Z
Learnt from: aidankmcalister
Repo: prisma/docs PR: 7165
File: content/800-guides/550-test-guide.mdx:85-90
Timestamp: 2025-10-08T16:23:00.388Z
Learning: For .mdx files in the prisma/docs repository: All headings and titles should use sentence case (e.g., "Getting started with Prisma ORM", "Best practices for authentication"), not title case. Exception: Always preserve exact casing for product names including "Prisma Postgres", "Prisma", "Prisma ORM", and "Prisma Data Platform".

Applied to files:

  • content/200-orm/050-overview/500-databases/950-cloudflare-d1.mdx
📚 Learning: 2025-10-08T16:22:57.129Z
Learnt from: aidankmcalister
Repo: prisma/docs PR: 7165
File: content/800-guides/550-test-guide.mdx:50-66
Timestamp: 2025-10-08T16:22:57.129Z
Learning: In `.mdx` files, do NOT flag or suggest changes for the following code quality issues even if they represent poor practices: React anti-patterns (using var instead of useState, direct DOM manipulation), missing keys in .map() iterations, non-serializable props in getServerSideProps, unused variables, missing error handling, SQL injection vulnerabilities (unless actively showing how to fix them), insecure cookie settings, missing TypeScript types, PrismaClient instantiation patterns, or any other code quality, security, or performance issues. Documentation code snippets are copied from source code and often intentionally show "before" examples or common mistakes.

Applied to files:

  • content/200-orm/050-overview/500-databases/950-cloudflare-d1.mdx
📚 Learning: 2025-10-08T16:23:00.388Z
Learnt from: aidankmcalister
Repo: prisma/docs PR: 7165
File: content/800-guides/550-test-guide.mdx:85-90
Timestamp: 2025-10-08T16:23:00.388Z
Learning: For .mdx files in the prisma/docs repository: Only flag code snippets for (1) exposed secrets with real-looking values that should be placeholders (e.g., API keys, database passwords, AWS credentials), or (2) blatant syntax errors like missing parentheses, brackets, braces, or mismatched delimiters. Do not flag code quality issues, anti-patterns, security vulnerabilities, missing error handling, unused variables, or any other bad practices, as documentation intentionally shows problematic code.

Applied to files:

  • content/200-orm/050-overview/500-databases/950-cloudflare-d1.mdx
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (2)
  • GitHub Check: Check internal links
  • GitHub Check: Cloudflare Pages
🔇 Additional comments (5)
content/800-guides/070-cloudflare-d1.mdx (3)

157-172: Clarify whether prisma.config.ts is required for the migration workflow.

The guide introduces a prisma.config.ts file at lines 157-172, but it's unclear whether this file is essential for the workflow or purely optional for convenience. The actual prisma migrate diff commands that follow use explicit file paths (e.g., --to-schema prisma/schema.prisma), which don't appear to depend on the config file.

Please clarify in the documentation whether this config file is necessary, or if it's being set up for future use (e.g., for prisma migrate commands that might reference it by default).


52-72: Schema configuration clearly shows the new runtime setting for Cloudflare.

The documentation properly explains that the runtime = "cloudflare" directive must be added to the generator block, and the example accurately reflects this requirement for Prisma ORM on Cloudflare Workers.


225-236: Update the migration command to use --to-schema instead of --to-schema-datamodel.

The INFO box showing how to generate future migrations references the outdated --to-schema-datamodel flag. This should be updated to --to-schema for consistency with the initial migration steps and alignment with the updated workflow shown in the overview documentation.

Apply this diff to correct the command:

  For future schema changes, you can generate new migration files using:

  ```terminal
  npx prisma migrate diff \
    --from-local-d1 \
-   --to-schema-datamodel prisma/schema.prisma \
+   --to-schema prisma/schema.prisma \
    --script > migrations/0002_add_new_field.sql



<details>
<summary>⛔ Skipped due to learnings</summary>

Learnt from: aidankmcalister
Repo: prisma/docs PR: 7165
File: content/800-guides/550-test-guide.mdx:85-90
Timestamp: 2025-10-08T16:23:00.388Z
Learning: For .mdx files in the prisma/docs repository: Only flag code snippets for (1) exposed secrets with real-looking values that should be placeholders (e.g., API keys, database passwords, AWS credentials), or (2) blatant syntax errors like missing parentheses, brackets, braces, or mismatched delimiters. Do not flag code quality issues, anti-patterns, security vulnerabilities, missing error handling, unused variables, or any other bad practices, as documentation intentionally shows problematic code.


Learnt from: aidankmcalister
Repo: prisma/docs PR: 7165
File: content/800-guides/550-test-guide.mdx:50-66
Timestamp: 2025-10-08T16:22:57.129Z
Learning: In .mdx files, do NOT flag or suggest changes for the following code quality issues even if they represent poor practices: React anti-patterns (using var instead of useState, direct DOM manipulation), missing keys in .map() iterations, non-serializable props in getServerSideProps, unused variables, missing error handling, SQL injection vulnerabilities (unless actively showing how to fix them), insecure cookie settings, missing TypeScript types, PrismaClient instantiation patterns, or any other code quality, security, or performance issues. Documentation code snippets are copied from source code and often intentionally show "before" examples or common mistakes.


Learnt from: carlagn
Repo: prisma/docs PR: 7183
File: content/200-orm/800-more/600-help-and-troubleshooting/050-dataguide/050-database-glossary.mdx:561-567
Timestamp: 2025-10-14T11:41:08.844Z
Learning: Ignore the file content/200-orm/800-more/600-help-and-troubleshooting/050-dataguide/050-database-glossary.mdx in future reviews as per user request. Issues in this file were addressed in PR #7185.


Learnt from: aidankmcalister
Repo: prisma/docs PR: 7165
File: content/800-guides/550-test-guide.mdx:85-90
Timestamp: 2025-10-08T16:23:00.388Z
Learning: For .mdx files in the prisma/docs repository: All headings and titles should use sentence case (e.g., "Getting started with Prisma ORM", "Best practices for authentication"), not title case. Exception: Always preserve exact casing for product names including "Prisma Postgres", "Prisma", "Prisma ORM", and "Prisma Data Platform".


Learnt from: aidankmcalister
Repo: prisma/docs PR: 7167
File: content/900-ai/prompts/astro.mdx:84-84
Timestamp: 2025-10-09T21:32:50.340Z
Learning: The npx prisma init command supports the following flags: --db (shorthand for --datasource-provider prisma+postgres), --output (specifies output location for generated client), --generator-provider (defines the generator provider), --datasource-provider, --url, --preview-feature, and --with-model. These are documented valid CLI options for Prisma init command.


</details>

</blockquote></details>
<details>
<summary>content/200-orm/050-overview/500-databases/950-cloudflare-d1.mdx (2)</summary><blockquote>

`48-54`: **Workflow narrative is clear and properly positions the Wrangler CLI + `prisma migrate diff` approach for Prisma ORM 7.**

The updated guidance correctly frames the new migration strategy: using Wrangler's migration system structure combined with `prisma migrate diff` to generate SQL. This is a significant but well-documented departure from the previous driver adapter approach.

---

`100-100`: **Migration commands consistently use the updated `--to-schema` flag.**

The `prisma migrate diff` examples throughout the document correctly use `--to-schema ./prisma/schema.prisma` (or relative variants) instead of the outdated `--to-schema-datamodel`. This is consistent and aligns with the updated Prisma CLI.





Also applies to: 108-108, 191-191, 199-199

</blockquote></details>

</blockquote></details>

</details>

<!-- announcements_start -->

> [!TIP]
> <details>
> <summary>📝 Customizable high-level summaries are now available in beta!</summary>
> 
> You can now customize how CodeRabbit generates the **high-level summary** in your pull requests — including its content, structure, tone, and formatting.
> 
> - Provide your own instructions using the `high_level_summary_instructions` setting.
> - Format the summary however you like (bullet lists, tables, multi-section layouts, contributor stats, etc.).
> - Use `high_level_summary_in_walkthrough` to move the summary from the description to the walkthrough section.
> 
> **Example instruction:**
> 
> > "Divide the high-level summary into five sections:
> >  1. **📝 Description** — Summarize the main change in 50–60 words, explaining what was done.
> >  2. **📓 References** — List relevant issues, discussions, documentation, or related PRs.
> >  3. **📦 Dependencies & Requirements** — Mention any new/updated dependencies, environment variable changes, or configuration updates.
> >  4. **📊 Contributor Summary** — Include a Markdown table showing contributions:
> >     `| Contributor | Lines Added | Lines Removed | Files Changed |`
> >  5. **✔️ Additional Notes** — Add any extra reviewer context.
> >  Keep each section concise (under 200 words) and use bullet or numbered lists for clarity."
> 
> Note: This feature is currently in beta for Pro-tier users, and pricing will be announced later.
> 
> </details>

<!-- announcements_end -->

<!-- tips_start -->

---



<sub>Comment `@coderabbitai help` to get the list of available commands and usage tips.</sub>

<!-- tips_end -->

<!-- internal state start -->


<!-- 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 -->

<!-- internal state end -->

@github-actions
Copy link
Contributor

Redirect check

This PR probably requires the following redirects to be added to static/_redirects:

  • This PR does not change any pages in a way that would require a redirect.

@cloudflare-workers-and-pages
Copy link

Deploying docs with  Cloudflare Pages  Cloudflare Pages

Latest commit: 7eec629
Status:🚫  Build failed.

View logs

@nurul3101 nurul3101 merged commit fecc9c3 into prisma-7 Nov 18, 2025
4 of 6 checks passed
@nurul3101 nurul3101 deleted the feat/update-cloudflare-guide branch November 18, 2025 11:11
aidankmcalister pushed a commit that referenced this pull request Nov 18, 2025
mhessdev pushed a commit that referenced this pull request Nov 19, 2025
* DC-5044 `prisma-client-js` deprecated (#7219)

* `prisma-client-js` deprecated

* chore: empty commit

* broken link updated

* DC-5040 Env Vars via Config (#7227)

* added env vars section to various pages

* minor coderabbit updates

* verbose removed

* test removed redirect list

* removed quickstart addition

* converted quickstarts back

* urls deprecated (#7226)

* minimum version uodated (#7234)

* DC-5043 Middleware removed from docs (#7233)

* middleware deleted

* more middleware removed

* more middleware removed

* coderabbit changes

* DC-6174: Remove adapter, engine, directUrl, studio from config (#7256)

* feat: add new features

* fix: revert links

* fix: broken links

* fix: broken link

* feat: restructure getting started side nav (#7245)

* feat(docs): add youtube embeded link to blog post (#7220)

Co-authored-by: Arthur Gamby <arthurgamby@Mac-002.lan>

* feat(docs): add quick  section to blog after the prompt (#7221)

Co-authored-by: Arthur Gamby <arthurgamby@Mac-002.lan>

* DC-5242 Astro Better-Auth Guide (#7215)

* doc created

* nextjs betterauth fixed

* guide broken down into manageable steps

* image added

* Optimised images with calibre/image-actions

* image updated

* Optimised images with calibre/image-actions

* lychee only comments on broken links

* config updated

* lychee updated based on CR comment

* chore: trigger CI checks

* ignore gnu

* fix: update naming to better-auth DC-6120

* Optimised images with calibre/image-actions

* chore: shorten word

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Ankur Datta <64993082+ankur-arch@users.noreply.github.com>

* feat: restructure getting started side nav

* DC-5841 Removed Linkspector (#7231)

* removed linkspector

* retrigger

* retrigger

* retrigger

* Update label for Prisma Postgres tab (#7236)

* fix: content changes for getting started page (#7216)

* fix: content changes for getting started page

* fix: add redirects

* getting started checkpoint

* css styles fixed

* updates

---------

Co-authored-by: Aidan McAlister <aidankmcalister@gmail.com>
Co-authored-by: Aidan McAlister <105178005+aidankmcalister@users.noreply.github.com>

* DC-5820 AI Agents Served Markdown (#7237)

* ai crawler check successful

* ai crawlers checked

* update

* added anthropic

* middleware update

* improve detection

---------

Co-authored-by: Mike Hartington <mikehartington@gmail.com>

* feat: add prisma-orm quickstarts

* fix: update times and add proper links

* fix: instropspect changes

* feat: add get started from prisma orm page

* feat: add other orms

* fix: update other tools + ppg

* fix: add more clarity

* fix: add prisma postgres

* feat: clear migrate from early access

* fix: add to existing dbs sections

* Remove MCP server exploration tip (#7241)

Removed tip about using Cloudflare's AI Playground for MCP server exploration, as it no longer seems to reliably work.

* fix: clean-up docs files

* fix: typeorm missing urls

* fix: broken link

* fix: update titles

* fix: clear redirect loop (#7250)

* fix: add generate step + sqlite fixes

* fix: clean-up redirects file DC-6228

* fix: clean-up unnecessary file

* fix: remove unknown word

* fix: add links

---------

Co-authored-by: Arthur <arthur_gamby@hotmail.fr>
Co-authored-by: Arthur Gamby <arthurgamby@Mac-002.lan>
Co-authored-by: Aidan McAlister <105178005+aidankmcalister@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Petra Donka <donkapetra@gmail.com>
Co-authored-by: Aidan McAlister <aidankmcalister@gmail.com>
Co-authored-by: Mike Hartington <mikehartington@gmail.com>

* feat: update .env docs DC-6204 (#7259)

* fix: clarify config file path better (#7261)

* Update ORM docs (#7260)

* update

* use pg adapter instead of accelerate

* update

* add dotenv in prisma.config.ts

* fix warning note

* update

* update

* Update guides to use prisma.config.ts (#7243)

* (feat) Update guides to use prisma.config.ts

* refactor: Updated guides for Prisma 7 changes

---------

Co-authored-by: Aman Varshney <amanvarshney.work@gmail.com>

* feat: update ppg for other dbs section (#7264)

* feat: add kysley

* feat: add drizzle

* feat: add typeorm

* fix: clean-up

* feat: separate the sections better

* fix: remove badges

* feat: update prisma init related changes in other parts (#7267)

* feat: add kysley

* feat: add drizzle

* feat: add typeorm

* fix: clean-up

* fix: update prisma init command changes

* feat: update prisma cli docs

* fix: clarify the usage of prisma init better

* fix: add type defs

* feat: add pg as a dependency

* fix: broken internal link

* Update docs to perform migrations with connection pooling and Prisma config (#7266)

* feat: add mentions of new Prisma Studio (#7270)

* feat: add mentions of new Prisma Studio

* feat: add note for Studio for SQLite

* Update content/100-getting-started/02-prisma-orm/100-quickstart/200-sqlite.mdx

* Update content/100-getting-started/02-prisma-orm/200-add-to-existing-project/200-sqlite.mdx

* fix: make prisma studio docs more accurate

* fix: add missing punctuation

* feat: add mention of mongo support coming for P7 (#7271)

* feat: add mention of mongo support coming for mongo

* fix: refinements

* Update content/100-getting-started/02-prisma-orm/200-add-to-existing-project/800-mongodb.mdx

* (feat) Removes Accelerate specific instructions for Prisma Postgres (#7268)

* (feat) Removes Accelerate specific instructions for Prisma Postgres

* feat: update Deno integration guide to include additional development dependencies

* Update Cloudflare D1 Guides (#7273)

* feat: update serverless driver docs (#7272)

* feat: update serverless driver docs

* feat: add connection pool defaults

* feat: add query caching steps for prisma postgres

* Update content/200-orm/200-prisma-client/000-setup-and-configuration/050-databases-connections/115-connection-pool.mdx

* Update content/200-orm/200-prisma-client/000-setup-and-configuration/050-databases-connections/index.mdx

* Update content/200-orm/050-overview/500-databases/200-database-drivers.mdx

* Update content/200-orm/200-prisma-client/000-setup-and-configuration/050-databases-connections/115-connection-pool.mdx

* docs(): add v7 migration guide (#7249)

* docs(): add v7 migration guide

* docs(): update based on feedback

* Update content/200-orm/800-more/300-upgrade-guides/200-upgrading-versions/400-upgrading-to-prisma-7.mdx

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>

* docs(): update based on feedback

* docs(): update based on feedback

* docs(): update based on feedback

---------

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>

* update turso guide (#7274)

* (feat) Explicitly running prisma generate after migrate dev command and import updates (#7276)

* Update nuxt guides (#7275)

* update nuxt guide

* update

* broken link fix

* broken link fixed

* fix: add SQLite notes (#7277)

* fix: add SQLite notes

* fix: update serverless driver doc

* feat: add callout

* Prisma 7 merge fix (#7278)

* feat(docs): add youtube embeded link to blog post (#7220)

Co-authored-by: Arthur Gamby <arthurgamby@Mac-002.lan>

* feat(docs): add quick  section to blog after the prompt (#7221)

Co-authored-by: Arthur Gamby <arthurgamby@Mac-002.lan>

* DC-5242 Astro Better-Auth Guide (#7215)

* doc created

* nextjs betterauth fixed

* guide broken down into manageable steps

* image added

* Optimised images with calibre/image-actions

* image updated

* Optimised images with calibre/image-actions

* lychee only comments on broken links

* config updated

* lychee updated based on CR comment

* chore: trigger CI checks

* ignore gnu

* fix: update naming to better-auth DC-6120

* Optimised images with calibre/image-actions

* chore: shorten word

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Ankur Datta <64993082+ankur-arch@users.noreply.github.com>

* DC-5841 Removed Linkspector (#7231)

* removed linkspector

* retrigger

* retrigger

* retrigger

* Update label for Prisma Postgres tab (#7236)

* fix: content changes for getting started page (#7216)

* fix: content changes for getting started page

* fix: add redirects

* getting started checkpoint

* css styles fixed

* updates

---------

Co-authored-by: Aidan McAlister <aidankmcalister@gmail.com>
Co-authored-by: Aidan McAlister <105178005+aidankmcalister@users.noreply.github.com>

* DC-5820 AI Agents Served Markdown (#7237)

* ai crawler check successful

* ai crawlers checked

* update

* added anthropic

* middleware update

* improve detection

---------

Co-authored-by: Mike Hartington <mikehartington@gmail.com>

* Remove MCP server exploration tip (#7241)

Removed tip about using Cloudflare's AI Playground for MCP server exploration, as it no longer seems to reliably work.

* fix: clear redirect loop (#7250)

* Fix typo in environment variables reference (#7193)

* Fix typo in environment variables reference

* remove duplicate can be

---------

Co-authored-by: Ankur Datta <64993082+ankur-arch@users.noreply.github.com>

* chore(): add summary sections to top pages (#7228)

* DC-6234 Getting Started Page Updates (#7254)

* arrow added

* quickstart card hover

* always copy button added

* hover effect on copy button

* spcaer added

* pointless css removed

* updaets

* fuctional

* revewrt

* fixed for mobile

* link fix

---------

Co-authored-by: Arthur <arthur_gamby@hotmail.fr>
Co-authored-by: Arthur Gamby <arthurgamby@Mac-002.lan>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Ankur Datta <64993082+ankur-arch@users.noreply.github.com>
Co-authored-by: Petra Donka <donkapetra@gmail.com>
Co-authored-by: Mike Hartington <mikehartington@gmail.com>
Co-authored-by: Odysseus Zhang <b1fzhang@gmail.com>
Co-authored-by: Mike Hartington <mhartington@users.noreply.github.com>

* spell check words added

* Update content/100-getting-started/02-prisma-orm/100-quickstart/200-sqlite.mdx

* `pgcrypto` added to spellcheck

* Update content/100-getting-started/02-prisma-orm/100-quickstart/200-sqlite.mdx

* Update content/100-getting-started/02-prisma-orm/100-quickstart/200-sqlite.mdx

* Update content/100-getting-started/02-prisma-orm/100-quickstart/200-sqlite.mdx

Co-authored-by: Ankur Datta <64993082+ankur-arch@users.noreply.github.com>

* docs(): add note about vscode version pinning (#7279)

* docs(): add note about vscode version pinning

* Optimised images with calibre/image-actions

* Update content/250-postgres/350-integrations/500-vscode.mdx

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>

* docs(postgres): remove accelerate reference (#7246)

* DC-5044 `prisma-client-js` deprecated (#7219)

* `prisma-client-js` deprecated

* chore: empty commit

* broken link updated

* DC-5040 Env Vars via Config (#7227)

* added env vars section to various pages

* minor coderabbit updates

* verbose removed

* test removed redirect list

* removed quickstart addition

* converted quickstarts back

* urls deprecated (#7226)

* minimum version uodated (#7234)

* DC-5043 Middleware removed from docs (#7233)

* middleware deleted

* more middleware removed

* more middleware removed

* coderabbit changes

* DC-6174: Remove adapter, engine, directUrl, studio from config (#7256)

* feat: add new features

* fix: revert links

* fix: broken links

* fix: broken link

* feat: restructure getting started side nav (#7245)

* feat(docs): add youtube embeded link to blog post (#7220)

Co-authored-by: Arthur Gamby <arthurgamby@Mac-002.lan>

* feat(docs): add quick  section to blog after the prompt (#7221)

Co-authored-by: Arthur Gamby <arthurgamby@Mac-002.lan>

* DC-5242 Astro Better-Auth Guide (#7215)

* doc created

* nextjs betterauth fixed

* guide broken down into manageable steps

* image added

* Optimised images with calibre/image-actions

* image updated

* Optimised images with calibre/image-actions

* lychee only comments on broken links

* config updated

* lychee updated based on CR comment

* chore: trigger CI checks

* ignore gnu

* fix: update naming to better-auth DC-6120

* Optimised images with calibre/image-actions

* chore: shorten word

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Ankur Datta <64993082+ankur-arch@users.noreply.github.com>

* feat: restructure getting started side nav

* DC-5841 Removed Linkspector (#7231)

* removed linkspector

* retrigger

* retrigger

* retrigger

* Update label for Prisma Postgres tab (#7236)

* fix: content changes for getting started page (#7216)

* fix: content changes for getting started page

* fix: add redirects

* getting started checkpoint

* css styles fixed

* updates

---------

Co-authored-by: Aidan McAlister <aidankmcalister@gmail.com>
Co-authored-by: Aidan McAlister <105178005+aidankmcalister@users.noreply.github.com>

* DC-5820 AI Agents Served Markdown (#7237)

* ai crawler check successful

* ai crawlers checked

* update

* added anthropic

* middleware update

* improve detection

---------

Co-authored-by: Mike Hartington <mikehartington@gmail.com>

* feat: add prisma-orm quickstarts

* fix: update times and add proper links

* fix: instropspect changes

* feat: add get started from prisma orm page

* feat: add other orms

* fix: update other tools + ppg

* fix: add more clarity

* fix: add prisma postgres

* feat: clear migrate from early access

* fix: add to existing dbs sections

* Remove MCP server exploration tip (#7241)

Removed tip about using Cloudflare's AI Playground for MCP server exploration, as it no longer seems to reliably work.

* fix: clean-up docs files

* fix: typeorm missing urls

* fix: broken link

* fix: update titles

* fix: clear redirect loop (#7250)

* fix: add generate step + sqlite fixes

* fix: clean-up redirects file DC-6228

* fix: clean-up unnecessary file

* fix: remove unknown word

* fix: add links

---------

Co-authored-by: Arthur <arthur_gamby@hotmail.fr>
Co-authored-by: Arthur Gamby <arthurgamby@Mac-002.lan>
Co-authored-by: Aidan McAlister <105178005+aidankmcalister@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Petra Donka <donkapetra@gmail.com>
Co-authored-by: Aidan McAlister <aidankmcalister@gmail.com>
Co-authored-by: Mike Hartington <mikehartington@gmail.com>

* feat: update .env docs DC-6204 (#7259)

* fix: clarify config file path better (#7261)

* Update ORM docs (#7260)

* update

* use pg adapter instead of accelerate

* update

* add dotenv in prisma.config.ts

* fix warning note

* update

* update

* Update guides to use prisma.config.ts (#7243)

* (feat) Update guides to use prisma.config.ts

* refactor: Updated guides for Prisma 7 changes

---------

Co-authored-by: Aman Varshney <amanvarshney.work@gmail.com>

* feat: update ppg for other dbs section (#7264)

* feat: add kysley

* feat: add drizzle

* feat: add typeorm

* fix: clean-up

* feat: separate the sections better

* fix: remove badges

* feat: update prisma init related changes in other parts (#7267)

* feat: add kysley

* feat: add drizzle

* feat: add typeorm

* fix: clean-up

* fix: update prisma init command changes

* feat: update prisma cli docs

* fix: clarify the usage of prisma init better

* fix: add type defs

* feat: add pg as a dependency

* fix: broken internal link

* Update docs to perform migrations with connection pooling and Prisma config (#7266)

* feat: add mentions of new Prisma Studio (#7270)

* feat: add mentions of new Prisma Studio

* feat: add note for Studio for SQLite

* Update content/100-getting-started/02-prisma-orm/100-quickstart/200-sqlite.mdx

* Update content/100-getting-started/02-prisma-orm/200-add-to-existing-project/200-sqlite.mdx

* fix: make prisma studio docs more accurate

* fix: add missing punctuation

* feat: add mention of mongo support coming for P7 (#7271)

* feat: add mention of mongo support coming for mongo

* fix: refinements

* Update content/100-getting-started/02-prisma-orm/200-add-to-existing-project/800-mongodb.mdx

* docs(postgres): remove accelerate reference
Remove reference to accelerate and rework the docs to account for the new v7 changes

* Optimised images with calibre/image-actions

* docs(): update with feedback

* Optimised images with calibre/image-actions

* docs(ppg): updates

* docs(): update based on feedback

* docs(): update based on feedback

---------

Co-authored-by: Aidan McAlister <105178005+aidankmcalister@users.noreply.github.com>
Co-authored-by: Ankur Datta <64993082+ankur-arch@users.noreply.github.com>
Co-authored-by: Arthur <arthur_gamby@hotmail.fr>
Co-authored-by: Arthur Gamby <arthurgamby@Mac-002.lan>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Petra Donka <donkapetra@gmail.com>
Co-authored-by: Aidan McAlister <aidankmcalister@gmail.com>
Co-authored-by: Aman Varshney <amanvarshney.work@gmail.com>
Co-authored-by: Nurul Sundarani <sundarani@prisma.io>

* docs(metrics): remove metrics API (#7248)

* DC-5044 `prisma-client-js` deprecated (#7219)

* `prisma-client-js` deprecated

* chore: empty commit

* broken link updated

* DC-5040 Env Vars via Config (#7227)

* added env vars section to various pages

* minor coderabbit updates

* verbose removed

* test removed redirect list

* removed quickstart addition

* converted quickstarts back

* urls deprecated (#7226)

* minimum version uodated (#7234)

* DC-5043 Middleware removed from docs (#7233)

* middleware deleted

* more middleware removed

* more middleware removed

* coderabbit changes

* docs(metrics): remove metrics API

* DC-6174: Remove adapter, engine, directUrl, studio from config (#7256)

* feat: add new features

* fix: revert links

* fix: broken links

* fix: broken link

* feat: restructure getting started side nav (#7245)

* feat(docs): add youtube embeded link to blog post (#7220)

Co-authored-by: Arthur Gamby <arthurgamby@Mac-002.lan>

* feat(docs): add quick  section to blog after the prompt (#7221)

Co-authored-by: Arthur Gamby <arthurgamby@Mac-002.lan>

* DC-5242 Astro Better-Auth Guide (#7215)

* doc created

* nextjs betterauth fixed

* guide broken down into manageable steps

* image added

* Optimised images with calibre/image-actions

* image updated

* Optimised images with calibre/image-actions

* lychee only comments on broken links

* config updated

* lychee updated based on CR comment

* chore: trigger CI checks

* ignore gnu

* fix: update naming to better-auth DC-6120

* Optimised images with calibre/image-actions

* chore: shorten word

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Ankur Datta <64993082+ankur-arch@users.noreply.github.com>

* feat: restructure getting started side nav

* DC-5841 Removed Linkspector (#7231)

* removed linkspector

* retrigger

* retrigger

* retrigger

* Update label for Prisma Postgres tab (#7236)

* fix: content changes for getting started page (#7216)

* fix: content changes for getting started page

* fix: add redirects

* getting started checkpoint

* css styles fixed

* updates

---------

Co-authored-by: Aidan McAlister <aidankmcalister@gmail.com>
Co-authored-by: Aidan McAlister <105178005+aidankmcalister@users.noreply.github.com>

* DC-5820 AI Agents Served Markdown (#7237)

* ai crawler check successful

* ai crawlers checked

* update

* added anthropic

* middleware update

* improve detection

---------

Co-authored-by: Mike Hartington <mikehartington@gmail.com>

* feat: add prisma-orm quickstarts

* fix: update times and add proper links

* fix: instropspect changes

* feat: add get started from prisma orm page

* feat: add other orms

* fix: update other tools + ppg

* fix: add more clarity

* fix: add prisma postgres

* feat: clear migrate from early access

* fix: add to existing dbs sections

* Remove MCP server exploration tip (#7241)

Removed tip about using Cloudflare's AI Playground for MCP server exploration, as it no longer seems to reliably work.

* fix: clean-up docs files

* fix: typeorm missing urls

* fix: broken link

* fix: update titles

* fix: clear redirect loop (#7250)

* fix: add generate step + sqlite fixes

* fix: clean-up redirects file DC-6228

* fix: clean-up unnecessary file

* fix: remove unknown word

* fix: add links

---------

Co-authored-by: Arthur <arthur_gamby@hotmail.fr>
Co-authored-by: Arthur Gamby <arthurgamby@Mac-002.lan>
Co-authored-by: Aidan McAlister <105178005+aidankmcalister@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Petra Donka <donkapetra@gmail.com>
Co-authored-by: Aidan McAlister <aidankmcalister@gmail.com>
Co-authored-by: Mike Hartington <mikehartington@gmail.com>

* feat: update .env docs DC-6204 (#7259)

* fix: clarify config file path better (#7261)

* Update ORM docs (#7260)

* update

* use pg adapter instead of accelerate

* update

* add dotenv in prisma.config.ts

* fix warning note

* update

* update

* Update guides to use prisma.config.ts (#7243)

* (feat) Update guides to use prisma.config.ts

* refactor: Updated guides for Prisma 7 changes

---------

Co-authored-by: Aman Varshney <amanvarshney.work@gmail.com>

* feat: update ppg for other dbs section (#7264)

* feat: add kysley

* feat: add drizzle

* feat: add typeorm

* fix: clean-up

* feat: separate the sections better

* fix: remove badges

* feat: update prisma init related changes in other parts (#7267)

* feat: add kysley

* feat: add drizzle

* feat: add typeorm

* fix: clean-up

* fix: update prisma init command changes

* feat: update prisma cli docs

* fix: clarify the usage of prisma init better

* fix: add type defs

* feat: add pg as a dependency

* fix: broken internal link

* Update docs to perform migrations with connection pooling and Prisma config (#7266)

* feat: add mentions of new Prisma Studio (#7270)

* feat: add mentions of new Prisma Studio

* feat: add note for Studio for SQLite

* Update content/100-getting-started/02-prisma-orm/100-quickstart/200-sqlite.mdx

* Update content/100-getting-started/02-prisma-orm/200-add-to-existing-project/200-sqlite.mdx

* fix: make prisma studio docs more accurate

* fix: add missing punctuation

* feat: add mention of mongo support coming for P7 (#7271)

* feat: add mention of mongo support coming for mongo

* fix: refinements

* Update content/100-getting-started/02-prisma-orm/200-add-to-existing-project/800-mongodb.mdx

* Restore content/200-orm/200-prisma-client/600-observability-and-logging/240-metrics.mdx

* docs(): update based on feedback

* Update content/200-orm/200-prisma-client/000-setup-and-configuration/050-databases-connections/115-connection-pool.mdx

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>

---------

Co-authored-by: Aidan McAlister <105178005+aidankmcalister@users.noreply.github.com>
Co-authored-by: Ankur Datta <64993082+ankur-arch@users.noreply.github.com>
Co-authored-by: Arthur <arthur_gamby@hotmail.fr>
Co-authored-by: Arthur Gamby <arthurgamby@Mac-002.lan>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Petra Donka <donkapetra@gmail.com>
Co-authored-by: Aidan McAlister <aidankmcalister@gmail.com>
Co-authored-by: Aman Varshney <amanvarshney.work@gmail.com>
Co-authored-by: Nurul Sundarani <sundarani@prisma.io>
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>

* fix build errors

* fix

* Add callout for bun and sqlite (#7280)

* Add caalout for bun and sqlite

* add link to bun docs

* fix: get started path url (#7281)

* fix: clarify studio better (#7282)

* feat: add connection pooling gif (#7284)

---------

Co-authored-by: Aidan McAlister <105178005+aidankmcalister@users.noreply.github.com>
Co-authored-by: Arthur <arthur_gamby@hotmail.fr>
Co-authored-by: Arthur Gamby <arthurgamby@Mac-002.lan>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Petra Donka <donkapetra@gmail.com>
Co-authored-by: Aidan McAlister <aidankmcalister@gmail.com>
Co-authored-by: Mike Hartington <mikehartington@gmail.com>
Co-authored-by: Aman Varshney <amanvarshney.work@gmail.com>
Co-authored-by: Nurul Sundarani <sundarani@prisma.io>
Co-authored-by: Mike Hartington <mhartington@users.noreply.github.com>
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
Co-authored-by: Odysseus Zhang <b1fzhang@gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants