HungryListener commited on
Commit
b22f1af
·
verified ·
1 Parent(s): 04f923e

Update main.py

Browse files

added uvicorn run command

Files changed (1) hide show
  1. main.py +2 -0
main.py CHANGED
@@ -23,3 +23,5 @@ app.add_middleware(
23
  def root():
24
  return {"message": "Welcome to the Resume Processing API"}
25
 
 
 
 
23
  def root():
24
  return {"message": "Welcome to the Resume Processing API"}
25
 
26
+ if __name__ == "__main__":
27
+ uvicorn.run(app, host="0.0.0.0", port=7860)