We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc66e40 commit e33c112Copy full SHA for e33c112
streamlit_app.py
@@ -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