Updated prisma.

This commit is contained in:
Mike Cao 2025-11-21 21:35:11 -08:00
parent b45971da33
commit b9d52af215
13 changed files with 493 additions and 167 deletions

8
prisma.config.ts Normal file
View file

@ -0,0 +1,8 @@
import 'dotenv/config';
import { defineConfig, env } from 'prisma/config';
export default defineConfig({
datasource: {
url: env('DATABASE_URL'),
},
});