The server script should just give a clean, foreground execution of the app. A second script has been added to a dev server launch to try to get a backgrounding wrapper in place.
9 lines
171 B
Bash
Executable File
9 lines
171 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# script/server: Launch the server
|
|
|
|
source "$(dirname "${0}")"/../script/include/global_header.inc.sh
|
|
|
|
# Launch the app
|
|
run_command "./app.py ${LAUNCH_ARGS}"
|