Skip to content

Commit 894630b

Browse files
authored
Change port to a less commonly used one (#80)
1 parent 2ac7bb2 commit 894630b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

backend/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
app = App()
66

77
if __name__ == '__main__':
8-
serve(app, host='0.0.0.0', port=8080)
8+
serve(app, host='0.0.0.0', port=8182)

backend/profiler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
app = ProfilerMiddleware(app, stream=None, profile_dir="profiles")
1616

1717
if __name__ == '__main__':
18-
serve(app, host='0.0.0.0', port=8080)
18+
serve(app, host='0.0.0.0', port=8182)

web/src/requests/constants.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const SERVER_URL = 'http://localhost:8080';
1+
export const SERVER_URL = 'http://localhost:8182';

0 commit comments

Comments
 (0)