import os # URL of the FastAPI service inside the docker network. # In docker-compose this resolves to the `api` service container. API_BASE_URL = os.getenv("API_BASE_URL", "http://api:8000") # Port on which the Flet web server listens (exposed by docker-compose). PORT = int(os.getenv("PORT", "8550")) # Pipeline can take many minutes for long videos; keep the HTTP timeout generous. HTTP_TIMEOUT = float(os.getenv("HTTP_TIMEOUT", "1800"))