From ada7f88324d8a64a1b2bb5feebbc8ea2bbf8095e Mon Sep 17 00:00:00 2001 From: Koval Yaroslav Date: Sat, 5 Oct 2024 15:32:02 +0200 Subject: [PATCH] Disable access log for production run --- start.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/start.sh b/start.sh index 832da6b..539945c 100644 --- a/start.sh +++ b/start.sh @@ -16,4 +16,4 @@ else fi # Run the uvicorn server with the specified settings -uvicorn app.main:app --workers "$WORKERS" --host=0.0.0.0 --port="$PORT" --loop uvloop --http h11 +uvicorn app.main:app --workers "$WORKERS" --host=0.0.0.0 --port="$PORT" --loop uvloop --http h11 --no-access-log