This commit is contained in:
2026-05-01 15:45:27 -04:00
parent 0ea6005e7b
commit 61d53886a3
49 changed files with 513 additions and 1273 deletions

14
backend/prisma.config.ts Normal file
View File

@@ -0,0 +1,14 @@
// This file was generated by Prisma, and assumes you have installed the following:
// npm install --save-dev prisma dotenv
import "dotenv/config";
import { defineConfig } from "prisma/config";
export default defineConfig({
schema: "prisma/schema.prisma",
migrations: {
path: "prisma/migrations",
},
datasource: {
url: process.env["DATABASE_URL"],
},
});