refactor: moved uvicorn env loading to ./app/config/uvicorn.py

This commit is contained in:
Muhamad Aji Wibisono 2025-06-10 22:12:45 +07:00
parent 587f9f4c09
commit 505d539fdf
3 changed files with 99 additions and 88 deletions

View file

@ -53,6 +53,7 @@ TTS_SERVICE_API_BASE=""
STT_SERVICE_API_BASE=""
# --- Uvicorn Server Configuration ---
# Full documentation for Uvicorn options can be found at: https://www.uvicorn.org/#command-line-options
UVICORN_HOST="0.0.0.0" # Host to bind (default: 0.0.0.0)
UVICORN_PORT=8000 # Port to bind (default: 8000)
UVICORN_LOG_LEVEL="info" # Log level (critical, error, warning, info, debug, trace)