Files
starr-philproperties/docker-entrypoint.sh
T
kennethobsequio 439bb33f77 ready to test
Testing

Signed-off-by: Kenneth Obsequio <k80308392@gmail.com>
2026-06-22 10:06:58 +08:00

9 lines
174 B
Bash

#!/bin/sh
set -e
echo "Running database migrations..."
npx sequelize-cli db:migrate
echo "✅ Migrations done."
exec pm2-runtime start server.js --name "${APP_NAME:-app}"