Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
prashantmatlani
/
csa01
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
prashantmatlani
commited on
30 days ago
Commit
2ee02f5
·
1 Parent(s):
cb79b00
Add server.py stub with main() for multi-mode validation
Browse files
Files changed (1)
hide
show
server.py
+7
-0
server.py
ADDED
Viewed
@@ -0,0 +1,7 @@
1
+
2
+
#from server.app import main
3
+
import uvicorn
4
+
5
+
if __name__ == "__main__":
6
+
#main()
7
+
uvicorn.run("server.app:app", host="127.0.0.1", port=8000, reload=True)