Add database seeding functionality, update Prisma configuration, and create seed script for initial data population

This commit is contained in:
Norbert Maciaszek
2025-11-25 12:35:31 +01:00
parent 678605b7bc
commit 6b50100ba7
3 changed files with 36 additions and 9 deletions

View File

@@ -14,6 +14,7 @@ COPY prisma ./prisma
RUN npx prisma migrate deploy
RUN npx prisma generate
RUN npx prisma db seed
COPY . .