mirror of
https://github.com/ajnart/homarr.git
synced 2026-01-29 18:59:20 +01:00
16 lines
298 B
Bash
16 lines
298 B
Bash
# Run migrations
|
|
node ./db/migrations/$DB_DIALECT/migrate.cjs ./db/migrations/$DB_DIALECT
|
|
|
|
# Start Redis
|
|
redis-server /app/redis.conf &
|
|
|
|
# Run the tasks backend
|
|
node apps/tasks/tasks.cjs &
|
|
|
|
node apps/websocket/wssServer.cjs &
|
|
|
|
# Run the nextjs server
|
|
node apps/nextjs/server.js & PID=$!
|
|
|
|
wait $PID
|