mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-01 19:15:56 +01:00
12 lines
260 B
Bash
12 lines
260 B
Bash
#!/bin/sh
|
|
|
|
echo "Exporting hostname..."
|
|
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 |