From aaeacc177e7a3a092b66c5d619774e413f0316d5 Mon Sep 17 00:00:00 2001 From: bloodearnest Date: Fri, 22 Mar 2024 13:44:56 +0000 Subject: [PATCH] s/just gunicorn/just run-gunicorn --- justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/justfile b/justfile index 1a7498f2..fe20789b 100644 --- a/justfile +++ b/justfile @@ -125,7 +125,7 @@ run *ARGS: devenv $BIN/python manage.py runserver "$@" # run airlock with gunicorn, like in production -gunicorn *args: devenv +run-gunicorn *args: devenv $BIN/gunicorn --config gunicorn.conf.py airlock.wsgi {{ args }} # run Django's manage.py entrypoint