Skip to content

Commit e33c112

Browse files
committed
Create streamlit_app.py
1 parent fc66e40 commit e33c112

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

streamlit_app.py

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
"""
2+
Entry point for Streamlit Cloud deployment.
3+
This file exists in the root for Streamlit Cloud compatibility.
4+
The actual app code is in app/streamlit_app.py.
5+
"""
6+
7+
import sys
8+
from pathlib import Path
9+
10+
# Add the app directory to the path
11+
sys.path.insert(0, str(Path(__file__).parent / "app"))
12+
13+
# Import and run the main function
14+
from streamlit_app import main
15+
16+
if __name__ == "__main__":
17+
main()

0 commit comments

Comments
 (0)