File size: 183 Bytes
480e694
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import uvicorn

if __name__ == "__main__":
    uvicorn.run(
        "backend.server:app",
        host="0.0.0.0",
        port=8000,
        reload=True,
        access_log=True
    )