From 564461ce162e17e8e87ba67efeec514ca64108e5 Mon Sep 17 00:00:00 2001 From: Oliver Ni Date: Sat, 16 Sep 2023 03:33:37 -0700 Subject: [PATCH] Fix scripts --- run | 2 +- scripts/run_github_actions.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/run b/run index a3d29773..c2cc044f 100755 --- a/run +++ b/run @@ -10,7 +10,7 @@ NUM_WORKERS=4 cd $DJANGO_DIR -exec poetry run gunicorn "$DJANGO_WSGI_MODULE" \ +exec poetry run gunicorn hknweb.wsgi \ -w $NUM_WORKERS \ --log-level debug \ --log-file - \ diff --git a/scripts/run_github_actions.sh b/scripts/run_github_actions.sh index 0813528f..1a12d383 100755 --- a/scripts/run_github_actions.sh +++ b/scripts/run_github_actions.sh @@ -5,4 +5,4 @@ PYTHONPATH=$DJANGO_DIR:$PYTHONPATH cd $DJANGO_DIR -exec poetry run gunicorn "$DJANGO_WSGI_MODULE" --daemon +exec poetry run gunicorn hknweb.wsgi --daemon