Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,12 @@ Prisma Config is now the default place for configuring how the Prisma CLI intera
database. You now configure your database URL, schema location, migration output, and custom seed
scripts.

:::info

The `prisma.config.ts` file should be placed at the **root of your project** (where your `package.json` is located).

:::

```ts
import 'dotenv/config'
import { defineConfig, env } from 'prisma/config'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ try {

- Requires a Prisma Postgres instance and does not work with [local development](/postgres/database/local-development) databases
- Currently in Early Access and not yet recommended for production
- Connection pooling is not currently supported and is planned to be supported when [`@prisma/ppg`](https://www.npmjs.com/package/@prisma/ppg) reaches [General Availability](https://www.prisma.io/docs/orm/more/releases#generally-available-ga)
- Connection pooling is not currently supported and is planned to be supported when [`@prisma/ppg`](https://www.npmjs.com/package/@prisma/ppg) reaches [General Availability](/orm/more/releases#generally-available-ga)

## Learn more

Expand Down
Loading