File size: 271 Bytes
cb92d2b
 
 
 
31dbff3
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
if __name__ == "__main__":
    import uvicorn
    from config import args

    uvicorn.run(
        "app:app",
        host=args.host,
        port=args.port,
        reload=args.reload,
        ssl_certfile=args.ssl_certfile,
        ssl_keyfile=args.ssl_keyfile,
    )