Update main.py
Browse filesadded uvicorn run command
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)
|