From 9ba6aef42024215e1895a3a69eba4de560b434ff Mon Sep 17 00:00:00 2001 From: Andreas Zweili Date: Tue, 10 Mar 2020 20:25:15 +0100 Subject: [PATCH] replace nohub with & --- run.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/run.sh b/run.sh index ba2a08c..472ad2d 100755 --- a/run.sh +++ b/run.sh @@ -3,5 +3,5 @@ export DJANGO_DEBUG=False export DJANGO_SECRET_KEY=foo ./manage.py makemigrations ./manage.py migrate -nohub gunicorn sensors.wsgi:application --bind 0.0.0.0:8000 --workers 3 -nohub ./collector.sh +gunicorn sensors.wsgi:application --bind 0.0.0.0:8000 --workers 3 & +./collector.sh &