feat: add Request and Job schema with migration

Adds the Prisma schema (Request/Job models, RequestStatus/JobState
enums), a Prisma client singleton at web/src/lib/db.ts, and the
init_request_job migration, applied and verified against Postgres.

Also publishes the db service's port (5432:5432) in docker-compose.yml
so host-run Prisma commands can reach localhost:5432 for local dev.
This commit is contained in:
Jonathan
2026-07-10 16:43:22 +02:00
parent 80e01b1c52
commit ab4db641b0
6 changed files with 99 additions and 1 deletions
+4 -1
View File
@@ -6,7 +6,10 @@
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "vitest run"
"test": "vitest run",
"postinstall": "prisma generate",
"db:migrate": "prisma migrate deploy",
"db:dev": "prisma migrate dev"
},
"dependencies": {
"next": "15.5.20",