Spaces:
Sleeping
Sleeping
| """ | |
| MySpace Ooty Data Analytics Dashboard | |
| Deployment Entry Point for Hugging Face Spaces | |
| This file serves as the main entry point for the Streamlit app. | |
| Hugging Face Spaces will automatically run this file. | |
| """ | |
| import sys | |
| from pathlib import Path | |
| # Add project root to path for imports | |
| project_root = Path(__file__).parent | |
| sys.path.insert(0, str(project_root)) | |
| # Import and execute the main dashboard | |
| # This imports all the code from streamlit_app/app.py | |
| exec(open(project_root / "streamlit_app" / "app.py", encoding="utf-8").read()) | |