Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
SpreadSheets600
/
PoraHobe
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
SpreadSheets
commited on
Sep 24, 2025
Commit
548cd96
·
1 Parent(s):
5758244
feat: add main application entry point
Browse files
Files changed (1)
hide
show
run.py
+6
-0
run.py
ADDED
Viewed
@@ -0,0 +1,6 @@
1
+
from app import create_app
2
+
3
+
app = create_app()
4
+
5
+
if __name__ == "__main__":
6
+
app.run(host="0.0.0.0", port=8080, debug=True)