fix: UVICORN_WORKERS propagation in start_server (#40)

Signed-off-by: Michele Dolfi <97102151+dolfim-ibm@users.noreply.github.com>
This commit is contained in:
Michele Dolfi
2025-02-12 07:13:01 +01:00
committed by GitHub
parent de42baf8dc
commit be7e4162af

View File

@@ -6,7 +6,7 @@ export PORT="${PORT:-5001}"
export HOST="${HOST:-"0.0.0.0"}"
# Performance settings
UVICORN_WORKERS="${WITH_UI:-1}"
UVICORN_WORKERS="${UVICORN_WORKERS:-1}"
# Development settings
export WITH_UI="${WITH_UI:-"true"}"