Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit 8f1e481

Browse files
committed
Changed default port to 8502 in server.js
1 parent 37dd7cb commit 8f1e481

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ app.get("/", (req, res) => {
2222
res.send("alive");
2323
});
2424

25-
const PORT = process.env.PORT || 8501;
25+
const PORT = process.env.PORT || 8502;
2626
app.listen(PORT, () => {
2727
console.log(`App is hosted on port ${PORT}.`); // eslint-disable-line no-console
2828
});

0 commit comments

Comments
 (0)