diff --git a/pr_agent/servers/github_app.py b/pr_agent/servers/github_app.py index 1a2f5d1b..1b44dedf 100644 --- a/pr_agent/servers/github_app.py +++ b/pr_agent/servers/github_app.py @@ -292,3 +292,5 @@ app.include_router(router) def start(): uvicorn.run(app, host="0.0.0.0", port=int(os.environ.get("PORT", "3000"))) +if __name__ == '__main__': + start()