Files
Homarr/scripts/run.sh

13 lines
226 B
Bash
Raw Normal View History

# Run migrations
node ./db/migrate.cjs ./db/migrations
# Start Redis
redis-server &
# Run the tasks backend
node apps/tasks/tasks.cjs &
node apps/websocket/wssServer.cjs &
# Run the nextjs server
node apps/nextjs/server.js