diff --git a/script/server b/script/server index ebace09b..cd9fb452 100755 --- a/script/server +++ b/script/server @@ -15,4 +15,7 @@ set -e cd "$(dirname "${0}")/.." # Launch the app -pipenv run python app.py ${@} +pipenv run python app.py ${@} & +child=$! + +wait $child