Nav772 commited on
Commit
84ec689
·
verified ·
1 Parent(s): 5cdade1

Create run.py

Browse files
Files changed (1) hide show
  1. run.py +5 -0
run.py ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ import uvicorn
2
+
3
+ if __name__ == "__main__":
4
+ from app import app
5
+ uvicorn.run(app, host="0.0.0.0", port=7860)