Skip to content

Commit

Permalink
server port updated
Browse files Browse the repository at this point in the history
  • Loading branch information
shamilkotta authored Nov 12, 2023
1 parent 73a647c commit 6cee873
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 @@ -5,6 +5,6 @@ const port = process.env.PORT || 5000;
app.set("port", port);

const server = http.createServer(app);
server.listen(port, "127.0.0.1", () => {
server.listen(port, () => {
console.log(`Server running on ${port}`);
});

0 comments on commit 6cee873

Please sign in to comment.