Files
Homarr/scripts/run.sh

14 lines
280 B
Bash
Raw Normal View History

2023-08-05 00:45:58 +02:00
#!/bin/sh
echo "Exporting hostname..."
2023-08-05 00:45:58 +02:00
export NEXTAUTH_URL_INTERNAL="http://$HOSTNAME:7575"
echo "Migrating database..."
cd ./migrate; yarn db:migrate & PID=$!
# Wait for migration to finish
wait $PID
echo "Starting production server..."
node /app/server.js & PID=$!
wait $PID