Migrations will be run manually via Coolify terminal to isolate the restart loop issue. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
10 lines
344 B
Bash
10 lines
344 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
# NOTE: Migrations désactivées pour diagnostiquer le problème de redémarrage
|
|
# Lancer manuellement via: docker exec <container> node dist/scripts/migrate.js
|
|
# echo "[entrypoint] Running database migrations..."
|
|
# node dist/scripts/migrate.js
|
|
|
|
echo "[entrypoint] Starting application server..."
|
|
exec node dist/src/server.js
|