feat: add Docker Compose setup with Dockerfiles for all services

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-02 13:39:21 +08:00
parent c3f8b598af
commit f5907892bf
8 changed files with 229 additions and 0 deletions

9
scripts/migrate-and-start.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/sh
set -e
echo "Running database migrations..."
npx prisma migrate deploy --schema=prisma/schema.prisma
echo "Starting server..."
cd /app/packages/server
exec node dist/index.js