From 482a8d3e69c43170758f1670d293a59d4b1d60c2 Mon Sep 17 00:00:00 2001 From: Houjun Liu Date: Sat, 2 Sep 2023 11:14:15 -0700 Subject: [PATCH] flags go first --- startup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/startup.sh b/startup.sh index e88ebd4..02e0f4d 100644 --- a/startup.sh +++ b/startup.sh @@ -1 +1 @@ -python -m gunicorn simon.api:rest --host 0.0.0.0:80 -w 4 --timeout 10000 +python -m gunicorn --host 0.0.0.0:80 -w 4 --timeout 10000 simon.api:rest