File size: 539 Bytes
04b129a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
"""
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())