import uvicorn from .config import Settings if __name__ == "__main__": s = Settings() uvicorn.run("app.main:app", host=s.app_host, port=s.app_port)