Initial working commit
Some checks failed
Automated Container Build / build-and-push (push) Failing after 7s
Some checks failed
Automated Container Build / build-and-push (push) Failing after 7s
This commit is contained in:
parent
666ceb7325
commit
b7ce314f01
105 changed files with 35510 additions and 11 deletions
9
prisma.config.ts
Normal file
9
prisma.config.ts
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
import path from "node:path";
|
||||
import { defineConfig } from "prisma/config";
|
||||
|
||||
export default defineConfig({
|
||||
schema: path.join(__dirname, "prisma", "schema.prisma"),
|
||||
datasource: {
|
||||
url: process.env.DATABASE_URL ?? "file:./dev.db",
|
||||
},
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue