File size: 235 Bytes
333c51a
 
3eebcd0
 
 
333c51a
 
 
1
2
3
4
5
6
7
8
9
#!/bin/sh

# Run Prisma migrations against PostgreSQL
echo "Running database migrations..."
cd /app && npx prisma db push --skip-generate 2>/dev/null || echo "Migration skipped or already up to date"

# Start the application
exec "$@"