Skip to content

Commit 835dead

Browse files
committed
fix: update default server port to 5000
1 parent fc1b939 commit 835dead

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

backend/src/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import SocketManager from "./sockets/socketManager";
22
import { handleSocketConnection } from "./sockets/handleSocketConnection";
3-
const PORT = parseInt(process.env.PORT || "3000", 10);
3+
const PORT = parseInt(process.env.PORT || "5000", 10);
44

55
const socketManager = SocketManager.getInstance();
66
socketManager.onConnection((socket) => {

0 commit comments

Comments
 (0)