Skip to content

Commit

Permalink
change default server port from 3001 to 8080
Browse files Browse the repository at this point in the history
  • Loading branch information
Xanthium7 committed Dec 28, 2024
1 parent d5a7d61 commit 003a6cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server.js
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ io.on("connection", (socket) => {
});
});

const PORT = process.env.PORT || 3001;
const PORT = process.env.PORT || 8080;
httpServer.listen(PORT, () => {
console.log(`Server listening on port ${PORT}`);
});

0 comments on commit 003a6cf

Please sign in to comment.