This commit is contained in:
Aman Varshney
2025-04-14 21:45:28 +05:30
parent 8b03441909
commit 7f441ef670
268 changed files with 3513 additions and 3039 deletions

View File

@@ -0,0 +1,5 @@
import { PrismaClient } from "./generated/client";
const prisma = new PrismaClient();
export default prisma;

View File

@@ -0,0 +1,11 @@
generator client {
provider = "prisma-client"
previewFeatures = ["prismaSchemaFolder"]
output = "../generated"
moduleFormat = "esm"
}
datasource db {
provider = "postgres"
url = env("DATABASE_URL")
}