feat: add Prisma configuration file and update Dockerfile to include it

This commit is contained in:
Nils-Johan Gynther
2026-04-15 20:53:45 +02:00
parent 944a670a84
commit c9ef587eb1
4 changed files with 16 additions and 1 deletions
+11
View File
@@ -0,0 +1,11 @@
import { defineConfig } from 'prisma/config';
export default defineConfig({
schema: 'prisma/schema.prisma',
migrations: {
path: 'prisma/migrations',
},
datasource: {
url: process.env.DATABASE_URL!,
},
});