sofia-cloud / entrypoint.sh
Gmagl
fix: correcciones cr铆ticas y refactorizaci贸n de componentes
3eebcd0
Raw
History Blame Contribute Delete
235 Bytes
#!/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 "$@"