From c843ddd0f4366ed23d635357266566f9639aaacc Mon Sep 17 00:00:00 2001 From: Claire Peters Date: Tue, 17 Oct 2023 13:11:56 -0700 Subject: [PATCH] update container_startup.sh --- container_startup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/container_startup.sh b/container_startup.sh index 959971fe9..6e2f289de 100644 --- a/container_startup.sh +++ b/container_startup.sh @@ -16,5 +16,5 @@ python ./manage.py initial_setup & if [ "$BUILD_ENV" == 'dev' ]; then python ./manage.py runserver 0.0.0.0:80 --insecure else - gunicorn coldfront.config.wsgi:application --bind 0.0.0.0:80 + gunicorn coldfront.config.wsgi:application --bind 0.0.0.0:80 --reload fi