Live2Diff / demo /main.py
leoxing1996
add demo
d16b52d
raw
history blame contribute delete
281 Bytes
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,
)