d16b52d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from config import config if __name__ == "__main__": import uvicorn uvicorn.run( "app:app", host=config.host, port=config.port, reload=config.reload, ssl_certfile=config.ssl_certfile, ssl_keyfile=config.ssl_keyfile, )