From 17361349d3feb3f276ebe070c5bb455d767e425e Mon Sep 17 00:00:00 2001 From: Kevin Reynolds Date: Tue, 20 Aug 2024 13:46:19 -0400 Subject: [PATCH] change port from other flask service --- base/app/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/app/app.py b/base/app/app.py index 6a5d4eb..076117a 100644 --- a/base/app/app.py +++ b/base/app/app.py @@ -14,7 +14,7 @@ def run_flask(app): """Function to run the Flask app on a separate thread.""" - app.run(host='0.0.0.0', port=5000) + app.run(host='0.0.0.0', port=5123) def generate_petname(): """Generates a pet name in the format 'adjective-animal'."""