From 4f28b6f3cf4b3700e5c3b5a3375fb80e653d1fea Mon Sep 17 00:00:00 2001 From: Anes Belfodil Date: Sat, 14 Nov 2020 11:35:50 -0500 Subject: [PATCH] Change port to a less commonly used one --- backend/app.py | 2 +- backend/profiler.py | 2 +- web/src/requests/constants.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/backend/app.py b/backend/app.py index 93b9c27a..f9cbb7d8 100644 --- a/backend/app.py +++ b/backend/app.py @@ -5,4 +5,4 @@ app = App() if __name__ == '__main__': - serve(app, host='0.0.0.0', port=8080) + serve(app, host='0.0.0.0', port=8182) diff --git a/backend/profiler.py b/backend/profiler.py index 3ec11018..c8ecf65d 100644 --- a/backend/profiler.py +++ b/backend/profiler.py @@ -15,4 +15,4 @@ app = ProfilerMiddleware(app, stream=None, profile_dir="profiles") if __name__ == '__main__': - serve(app, host='0.0.0.0', port=8080) + serve(app, host='0.0.0.0', port=8182) diff --git a/web/src/requests/constants.js b/web/src/requests/constants.js index e761c194..4f407dbf 100644 --- a/web/src/requests/constants.js +++ b/web/src/requests/constants.js @@ -1 +1 @@ -export const SERVER_URL = 'http://localhost:8080'; +export const SERVER_URL = 'http://localhost:8182';