Liyew commited on
Commit
a70ed87
·
verified ·
1 Parent(s): 3359d31

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -4,3 +4,5 @@ from outfit import router
4
  app = FastAPI()
5
  app.include_router(router)
6
 
 
 
 
4
  app = FastAPI()
5
  app.include_router(router)
6
 
7
+ if __name__ == "__main__":
8
+ uvicorn.run("app:app", host="0.0.0.0", port=7860)