9 lines
149 B
Bash
9 lines
149 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
echo "🔧 Starte Migration (idempotent)..."
|
|
node db/migrate.js
|
|
|
|
echo "✅ Migration abgeschlossen. Starte Anwendung..."
|
|
exec "$@"
|