feat: Update application to use port 8808 instead of 8000 in README, Dockerfile, app.py, and docker-compose.yaml

This commit is contained in:
JB
2025-10-05 16:18:05 -07:00
parent 66a0679e18
commit 1629d3e80c
5 changed files with 11 additions and 13 deletions
+1 -1
View File
@@ -68,7 +68,7 @@ def create_app(config: Optional[dict[str, Any]] = None) -> Flask:
def main() -> None:
app = create_app()
host = os.environ.get("ABOGEN_HOST", "0.0.0.0")
port = int(os.environ.get("ABOGEN_PORT", "8000"))
port = int(os.environ.get("ABOGEN_PORT", "8808"))
debug = os.environ.get("ABOGEN_DEBUG", "false").lower() == "true"
app.run(host=host, port=port, debug=debug)