From e8e69d76a8dae896cdde59a633f55f94690a55c2 Mon Sep 17 00:00:00 2001 From: bretello Date: Fri, 14 Jun 2024 20:35:25 +0200 Subject: [PATCH] run.sh: show access logfile on stdout --- run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run.sh b/run.sh index 576702d..0883749 100755 --- a/run.sh +++ b/run.sh @@ -1,4 +1,4 @@ #!/usr/bin/env sh . .venv/bin/activate -gunicorn --bind 0.0.0.0:8080 app:app +gunicorn --bind 0.0.0.0:8080 --access-logfile - app:app