mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-13 21:01:21 +08:00
15 lines
302 B
TypeScript
15 lines
302 B
TypeScript
import 'dotenv/config'
|
|
import { defineConfig, env } from 'prisma/config'
|
|
|
|
export default defineConfig({
|
|
schema: 'prisma/schema.prisma',
|
|
migrations: {
|
|
path: 'prisma/migrations',
|
|
seed: 'pnpm run db-seed-script',
|
|
},
|
|
datasource: {
|
|
url: env('STACK_DATABASE_CONNECTION_STRING'),
|
|
},
|
|
})
|
|
|