import uvicorn from src.config import PORT if __name__ == "__main__": uvicorn.run("src.main:app", host="0.0.0.0", port=int(PORT), reload=True)