apps/docs/content/docs.v6/guides/turborepo.mdx
Prisma is a powerful ORM for managing databases, and Turborepo simplifies monorepo workflows. By combining these tools, you can create a scalable, modular architecture for your projects.
This guide will show you how to set up Prisma as a standalone package in a Turborepo monorepo, enabling efficient configuration, type sharing, and database management across multiple apps.
To set up a Turborepo monorepo named turborepo-prisma, run the following command:
npx create-turbo@latest turborepo-prisma
You'll be prompted to select your package manager, this guide will use npm:
:::info
npm:::
After the setup, choose a package manager for the project. Navigate to the project root directory and install Turborepo as a development dependency:
cd turborepo-prisma
npm install turbo --save-dev
For more information about installing Turborepo, refer to the official Turborepo guide.
database package to the monorepoCreate a database package within the packages directory. Then, create a package.json file for the package by running:
cd packages/
mkdir database
cd database
touch package.json
Define the package.json file as follows:
{
"name": "@repo/db",
"version": "0.0.0"
}
Next, install the required dependencies to use Prisma ORM. Use your preferred package manager:
npm install prisma @types/pg --save-dev
npm install @prisma/client @prisma/adapter-pg dotenv pg
yarn add prisma @types/pg --dev
yarn add @prisma/client @prisma/adapter-pg dotenv pg
pnpm add prisma @types/pg --save-dev
pnpm add @prisma/client @prisma/adapter-pg dotenv pg
:::info
If you are using a different database provider (MySQL, SQL Server, SQLite), install the corresponding driver adapter package instead of @prisma/adapter-pg. For more information, see Database drivers.
:::
Inside the database directory, initialize prisma by running:
npx prisma init --db --output ../generated/prisma
yarn prisma init --db --output ../generated/prisma
pnpm prisma init --db --output ../generated/prisma
This will create several files inside packages/database:
prisma directory with a schema.prisma file.prisma.config.ts file for configuring Prisma.env file containing the DATABASE_URL at the project root.output directory for the generated Prisma Client as generated/prisma.In the packages/database/prisma/schema.prisma file, add the following models:
generator client {
provider = "prisma-client"
output = "../generated/prisma"
}
datasource db {
provider = "postgresql"
}
model User { // [!code ++]
id Int @id @default(autoincrement()) // [!code ++]
email String @unique // [!code ++]
name String? // [!code ++]
posts Post[] // [!code ++]
} // [!code ++]
// [!code ++]
model Post { // [!code ++]
id Int @id @default(autoincrement()) // [!code ++]
title String // [!code ++]
content String? // [!code ++]
published Boolean @default(false) // [!code ++]
authorId Int // [!code ++]
author User @relation(fields: [authorId], references: [id]) // [!code ++]
} // [!code ++]
The prisma.config.ts file created in the packages/database directory should look like this:
import "dotenv/config";
import { defineConfig, env } from "prisma/config";
export default defineConfig({
schema: "prisma/schema.prisma",
migrations: {
path: "prisma/migrations",
},
datasource: {
url: env("DATABASE_URL"),
},
});
:::warning
It is recommended to add ../generated/prisma to the .gitignore file because it contains platform-specific binaries that can cause compatibility issues across different environments.
:::
In the schema.prisma file, we specify a custom output path where Prisma will generate its types. This ensures Prisma's types are resolved correctly across different package managers.
:::info
In this guide, the types will be generated in the database/generated/prisma directory.
:::
Let's add some scripts to the package.json inside packages/database:
{
"name": "@repo/db",
"version": "0.0.0",
"scripts": {
// [!code ++]
"db:generate": "prisma generate", // [!code ++]
"db:migrate": "prisma migrate dev --skip-generate", // [!code ++]
"db:deploy": "prisma migrate deploy" // [!code ++]
}, // [!code ++]
"devDependencies": {
"prisma": "^6.6.0"
},
"dependencies": {
"@prisma/client": "^6.6.0"
}
}
Let's also add these scripts to turbo.json in the root and ensure that DATABASE_URL is added to the environment:
{
"$schema": "https://turbo.build/schema.json",
"ui": "tui",
"tasks": {
"build": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"outputs": [".next/**", "!.next/cache/**"],
"env": ["DATABASE_URL"] // [!code ++]
},
"lint": {
"dependsOn": ["^lint"]
},
"check-types": {
"dependsOn": ["^check-types"]
},
"dev": {
"cache": false,
"persistent": true
},
"db:generate": { // [!code ++]
"cache": false // [!code ++]
}, // [!code ++]
"db:migrate": { // [!code ++]
"cache": false, // [!code ++]
"persistent": true // This is necessary to interact with the CLI and assign names to your database migrations. // [!code ++]
}, // [!code ++]
"db:deploy": { // [!code ++]
"cache": false // [!code ++]
} // [!code ++]
}
Migrate your prisma.schema and generate types
Navigate to the project root and run the following command to automatically migrate our database:
npx turbo db:migrate
yarn turbo db:migrate
pnpm turbo db:migrate
Generate your schema.prisma
To generate the types from Prisma schema, from the project root run:
npx turbo db:generate
yarn turbo db:generate
pnpm turbo db:generate
Next, export the generated types and an instance of PrismaClient so it can used in your applications.
In the packages/database directory, create a src folder and add a client.ts file. This file will define an instance of PrismaClient:
import { PrismaClient } from "../generated/prisma/client";
import { PrismaPg } from "@prisma/adapter-pg";
const adapter = new PrismaPg({
connectionString: process.env.DATABASE_URL,
});
const globalForPrisma = global as unknown as { prisma: PrismaClient };
export const prisma =
globalForPrisma.prisma ||
new PrismaClient({
adapter,
});
if (process.env.NODE_ENV !== "production") globalForPrisma.prisma = prisma;
Then create an index.ts file in the src folder to re-export the generated prisma types and the PrismaClient instance:
export { prisma } from "./client"; // exports instance of prisma
export * from "../generated/prisma/client"; // exports generated types from prisma
Follow the Just-in-Time packaging pattern and create an entrypoint to the package inside packages/database/package.json:
:::warning
If you're not using a bundler, use the Compiled Packages strategy instead.
:::
{
"name": "@repo/db",
"version": "0.0.0",
"scripts": {
"db:generate": "npx prisma generate",
"db:migrate": "npx prisma migrate dev --skip-generate",
"db:deploy": "npx prisma migrate deploy"
},
"devDependencies": {
"prisma": "^6.6.0"
},
"dependencies": {
"@prisma/client": "^6.6.0"
},
"exports": {
// [!code ++]
".": "./src/index.ts" // [!code ++]
} // [!code ++]
}
By completing these steps, you'll make the Prisma types and PrismaClient instance accessible throughout the monorepo.
database package in the web appThe turborepo-prisma project should have an app called web at apps/web. Add the database dependency to apps/web/package.json:
{
// ...
"dependencies": {
"@repo/db": "*" // [!code ++]
// ...
}
// ...
}
{
// ...
"dependencies": {
"@repo/db": "*" // [!code ++]
// ...
}
// ...
}
{
// ...
"dependencies": {
"@repo/db": "workspace:*" // [!code ++]
// ...
}
// ...
}
Run your package manager's install command inside the apps/web directory:
cd apps/web
npm install
cd apps/web
yarn install
cd apps/web
pnpm install
Let's import the instantiated prisma client from the database package in the web app.
In the apps/web/app directory, open the page.tsx file and add the following code:
import styles from "./page.module.css";
import { prisma } from "@repo/db";
export default async function Home() {
const user = await prisma.user.findFirst();
return <div className={styles.page}>{user?.name ?? "No user added yet"}</div>;
}
Then, create a .env file in the web directory and copy into it the contents of the .env file from the /database directory containing the DATABASE_URL:
DATABASE_URL="Same database url as used in the database directory" # [!code ++]
:::note
If you want to use a single .env file in the root directory across your apps and packages in a Turborepo setup, consider using a package like dotenvx.
To implement this, update the package.json files for each package or app to ensure they load the required environment variables from the shared .env file. For detailed instructions, refer to the dotenvx guide for Turborepo.
Keep in mind that Turborepo recommends using separate .env files for each package to promote modularity and avoid potential conflicts.
:::
The db:generate and db:deploy scripts are not yet optimized for the monorepo setup but are essential for the dev and build tasks.
If a new developer runs turbo dev on an application without first running db:generate, they will encounter errors.
To prevent this, ensure that db:generate is always executed before running dev or build. Additionally, make sure both db:deploy and db:generate are executed before db:build. Here's how to configure this in your turbo.json file:
{
"$schema": "https://turbo.build/schema.json",
"ui": "tui",
"tasks": {
"build": {
"dependsOn": ["^build", "^db:generate"], // [!code highlight]
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"outputs": [".next/**", "!.next/cache/**"],
"env": ["DATABASE_URL"] // [!code ++]
},
"lint": {
"dependsOn": ["^lint"]
},
"check-types": {
"dependsOn": ["^check-types"]
},
"dev": {
"dependsOn": ["^db:generate"], // [!code ++]
"cache": false,
"persistent": true
},
"db:generate": {
"cache": false
},
"db:migrate": {
"cache": false,
"persistent": true
},
"db:deploy": {
"cache": false
}
}
}
:::warning
Before starting the development server, note that if you are using Next.js v15.2.0, do not use Turbopack as there is a known issue. Remove Turbopack from your dev script by updating your apps/web/package.json
"script":{
"dev": "next dev --port 3000", // [!code highlight]
}
:::
Then from the project root run the project:
npx turbo run dev --filter=web
yarn turbo run dev --filter=web
pnpm turbo run dev --filter=web
Navigate to the http://localhost:3000 and you should see the message:
No user added yet
:::note
You can add users to your database by creating a seed script or manually by using Prisma Studio.
To use Prisma Studio to add manually data via a GUI, navigate inside the packages/database directory and run prisma studio using your package manager:
npx prisma studio
yarn prisma studio
pnpm prisma studio
This command starts a server with a GUI at http://localhost:5555, allowing you to view and modify your data.
:::
Congratulations, you're done setting up Prisma for Turborepo!