add docker and prisma

This commit is contained in:
Cesar
2026-05-22 15:27:58 -06:00
parent 0ea46e1f76
commit 397c2ef3df
10 changed files with 1467 additions and 7 deletions

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

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