Spaces:
No application file
No application file
| import uvicorn | |
| if __name__ == "__main__": | |
| uvicorn.run( | |
| "backend.server:app", | |
| host="0.0.0.0", | |
| port=8000, | |
| reload=True, | |
| access_log=True | |
| ) |
| import uvicorn | |
| if __name__ == "__main__": | |
| uvicorn.run( | |
| "backend.server:app", | |
| host="0.0.0.0", | |
| port=8000, | |
| reload=True, | |
| access_log=True | |
| ) |