6 lines
189 B
Bash
Executable File
6 lines
189 B
Bash
Executable File
#!/bin/sh
|
|
echo "Running database migrations..."
|
|
node scripts/run-migrations.js || echo "Migrations failed (continuing anyway)"
|
|
echo "Starting God Mode..."
|
|
exec node ./dist/server/entry.mjs
|