agenthub/scripts/entrypoint.sh
Paperclip FoundingEngineer e6cb89bf4e
Some checks are pending
CI / lint + typecheck + tests (push) Waiting to run
CI / docker build + push (push) Blocked by required conditions
fix(deploy): disable automatic migrations in entrypoint for diagnosis
Migrations will be run manually via Coolify terminal to isolate the restart loop issue.

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-05-02 12:23:07 +00:00

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