"""Docker / HuggingFace Spaces entrypoint. This file intentionally does NOT force demo-mode defaults. - In HuggingFace Spaces / Docker, set env vars (e.g., HF_SPACE=true, STORAGE_ENABLED=false) via Space Settings or Dockerfile ENV. - For local development, you can run `python src/app/gradio_app.py` directly. """ from src._app.gradio_app import launch_app if __name__ == "__main__": launch_app()