mirror of
https://github.com/rommapp/romm.git
synced 2026-02-18 00:27:41 +01:00
23 lines
297 B
Bash
Executable File
23 lines
297 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Run migrations and start uvicorn
|
|
/init_back &
|
|
|
|
# Start nginx
|
|
/init_front &
|
|
|
|
# Start rq worker
|
|
/init_worker &
|
|
|
|
# Start rq scheduler
|
|
/init_scheduler &
|
|
|
|
# Start watchdog
|
|
/init_watchdog &
|
|
|
|
# Wait for any process to exit
|
|
wait -n
|
|
|
|
# Exit with status of process that exited first
|
|
exit $?
|