Initial commit

This commit is contained in:
Jan
2026-04-08 16:30:44 +02:00
commit f9b17e9964
65 changed files with 7574 additions and 0 deletions

14
docker/entrypoint.sh Normal file
View File

@@ -0,0 +1,14 @@
#!/bin/sh
set -e
mkdir -p public/uploads
echo "Applying database migrations..."
npx prisma migrate deploy
echo "Seeding demo data..."
npx prisma db seed
echo "Starting Next.js..."
exec npm run start