Files

15 lines
365 B
JavaScript
Raw Permalink Normal View History

2026-03-12 14:15:44 +05:30
// This file was generated by Prisma, and assumes you have installed the following:
// npm install --save-dev prisma dotenv
2026-05-26 15:48:01 +05:30
import 'dotenv/config';
import { defineConfig } from 'prisma/config';
2026-03-12 14:15:44 +05:30
export default defineConfig({
2026-05-26 15:48:01 +05:30
schema: 'prisma/schema.prisma',
2026-03-12 14:15:44 +05:30
migrations: {
2026-05-26 15:48:01 +05:30
path: 'prisma/migrations',
2026-03-12 14:15:44 +05:30
},
datasource: {
2026-05-26 15:48:01 +05:30
url: process.env['DATABASE_URL'],
2026-03-12 14:15:44 +05:30
},
});