- 12 models: Organization, User, Account, Session, Project, Deliverable, DeliverableStage, StageAssignment, Revision, Comment, Notification, plus pipeline templates/dependencies - Prisma 7 adapter pattern with @prisma/adapter-pg - Seed script with 10 pipeline stages and dependency rules - Environment config (.env.example) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
14 lines
374 B
TypeScript
14 lines
374 B
TypeScript
// 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"],
|
|
},
|
|
});
|