managarten/mana-core-auth/docker-entrypoint.sh
2025-11-26 01:30:51 +01:00

13 lines
251 B
Bash
Executable file

#!/bin/sh
set -e
echo "🔄 Running database migrations..."
# Run actual migrations (creates schemas + tables)
pnpm migration:run
echo "✅ Migrations complete"
# Start the application
echo "🚀 Starting Mana Core Auth..."
exec node dist/main.js