Spaces:
Running
Running
File size: 407 Bytes
557ee65 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | """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()
|