Add initial Prisma migration
All checks were successful
Build / build (push) Successful in 11m12s
Template Compliance / compliance (push) Successful in 5s
Release Dry Run / release-dry-run (push) Successful in 1m34s

This commit is contained in:
MrSphay
2026-05-15 18:59:03 +02:00
parent 2f0b54b94e
commit cea591b587
3 changed files with 166 additions and 1 deletions

View File

@@ -22,6 +22,7 @@ Build: npm run build
Audit: npm run audit
Release check: npm run release:check
Docker: docker compose up --build
Database migrate: npm run db:migrate
```
## Stack
@@ -30,6 +31,12 @@ Docker: docker compose up --build
Next.js App Router, React, TypeScript, Prisma, Postgres, Socket.IO, Docker
```
Database setup:
```text
Prisma migrations live in prisma/migrations and are applied in Docker with prisma migrate deploy.
```
Package manager:
```text