Choose a setup path
Choose the fastest path to try Prisma Next in a new or existing project.
Start with a quickstart if you want Prisma Next to create the app. Use the existing-project path if you already have an app and database.
Start a new project
bunx create-prisma@nextQuickstart with PostgreSQL
Create the app, choose PostgreSQL, initialize the database, seed data, and run the first query.
Quickstart with MongoDB
Create the app, choose MongoDB, start or connect to MongoDB, seed data, and run the first query.
Use Prisma Postgres
bunx create-prisma@nextQuickstart with Prisma Postgres
Create a Prisma Next app and let setup provision Prisma Postgres for the first run.
From the CLI
Start from the command line when you want the Prisma Postgres path without browsing Console first.
Add to an existing project
bunx prisma-next initAdd to PostgreSQL
Add Prisma Next to an existing PostgreSQL app and infer a starter contract from the live schema.
Add to MongoDB
Add Prisma Next to an existing MongoDB app and model the collections you want to query first.
After setup
- Use the generated app scripts for the first run.
- Open
prisma-next.mdor the installed Prisma Next skills when you want agent-ready guidance inside the project. - Change the starter contract when you are ready to model your own data.
- Open the Prisma Next overview when you want the concepts behind the setup.