correction gem high dockerfile prisma schema
All checks were successful
Build and Push App / build (push) Successful in 52s

This commit is contained in:
2026-04-19 10:06:57 +02:00
parent 46175b32f5
commit c47d8821f6
5 changed files with 18 additions and 2 deletions

14
admin/prisma.config.js Normal file
View File

@@ -0,0 +1,14 @@
import { config } from 'dotenv';
// Load .env then override with .env.local for Next.js compatibility
config();
config({ path: '.env.local', override: true });
/**
* Prisma 7 Configuration
*/
export default {
datasource: {
url: process.env.DATABASE_URL,
},
};