Skip to content

Commit 5e85f57

Browse files
committed
Run socketio on port 8001
1 parent 3873b41 commit 5e85f57

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/socketio_app/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55

66
if __name__ == "__main__":
77
init_logger(AppConfig())
8-
uvicorn.run("socketio_app:create_app", factory=True, host="0.0.0.0", port=8000)
8+
uvicorn.run("socketio_app:create_app", factory=True, host="0.0.0.0", port=8001)

src/socketio_app/dev_server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55

66
if __name__ == "__main__":
77
init_logger(AppConfig())
8-
uvicorn.run("socketio_app:create_app", factory=True, host="0.0.0.0", port=8000, reload=True)
8+
uvicorn.run("socketio_app:create_app", factory=True, host="0.0.0.0", port=8001, reload=True)

0 commit comments

Comments
 (0)