abraham9486937737
Deploy MySpace Ooty Analytics to Hugging Face - with KPI styling updates
04b129a
raw
history blame contribute delete
539 Bytes
"""
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())