chore: port 3000 to 4002, use domain instead of IP

This commit is contained in:
asepharyana
2026-08-02 16:15:43 +07:00
parent 081b2ad4b5
commit 637b44a9e0
5 changed files with 67 additions and 5 deletions
+1 -1
View File
@@ -10,6 +10,6 @@ from pr_agent.servers.github_app import app
import uvicorn
if __name__ == '__main__':
port = int(os.environ.get("PORT", "3000"))
port = int(os.environ.get("PORT", "4002"))
print(f"Starting PR-Agent GitHub App server on 0.0.0.0:{port}")
uvicorn.run(app, host="0.0.0.0", port=port, log_level="info")