- 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>
13 lines
353 B
Text
13 lines
353 B
Text
# Database
|
|
DATABASE_URL="postgresql://postgres:postgres@localhost:5432/hp_prod_tracker?schema=public"
|
|
|
|
# Auth.js
|
|
AUTH_SECRET="" # Generate with: npx auth secret
|
|
AUTH_GOOGLE_ID=""
|
|
AUTH_GOOGLE_SECRET=""
|
|
AUTH_MICROSOFT_ENTRA_ID_ID=""
|
|
AUTH_MICROSOFT_ENTRA_ID_SECRET=""
|
|
AUTH_MICROSOFT_ENTRA_ID_TENANT_ID=""
|
|
|
|
# App
|
|
NEXT_PUBLIC_APP_URL="http://localhost:3000"
|