GlobalBusinessAdvisors commited on
Commit
6aa95f4
1 Parent(s): 42692fd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ import uvicorn
2
+
3
+ if __name__ == "__main__":
4
+ uvicorn.run("app.main:app", host="0.0.0.0", port=8000, reload=True)