Handover workspace

ERS, Todo, OfferReview, and Docu in one view

Imported from live server docs, code structure, and deployment notes.

Apr 3, 2026, 12:38 PM

OfferReview

Setup Prisma

This project uses Prisma as the ORM.

prisma/README.md

Updated Feb 19, 2026, 6:59 AM

Codex 5.3 Refactor Note: Canonical refactor plan: docs/CODEX-5.3-REFACTOR-PLAN.md. This document is retained for historical and implementation context during the refactor.

Setup Prisma

This project uses Prisma as the ORM.

Environment Setup

Create a .env.local file in the root with:

DATABASE_URL="postgresql://user:password@localhost:5432/offer_review"
JWT_SECRET="your-secret-key-here-change-in-production"

Database Migrations

# Create migration
npx prisma migrate dev --name init

# Apply migrations
npx prisma migrate deploy

# View schema
npx prisma studio

Seed Data (Development)

npx prisma db seed