from dotenv import load_dotenv from uvicorn import run from .http import app load_dotenv() run(app, host="0.0.0.0")