UpworkAutomation / streamlit_app.py
ananyajoshi's picture
Deploy app: Docker Space, session-only API keys, cloud file-upload dossier
6303ae6 verified
Raw
History Blame Contribute Delete
527 Bytes
"""Hugging Face Space entry point.
A Streamlit Space runs ``streamlit run streamlit_app.py`` from the repo root.
Because this file lives at the repo root, the root is on ``sys.path``, so the
``app`` package imports cleanly — no PYTHONPATH juggling needed. All it does is
hand off to the real app in :mod:`app.main`.
Local desktop users keep launching via the platform launchers / ``desktop_app.py``;
this file only exists for the cloud deployment.
"""
from __future__ import annotations
from app.main import main
main()