Skip to content

Commit

Permalink
updated default port
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexVOiceover committed Jan 23, 2024
1 parent 4e8613a commit 66f1254
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const server = require("./server.js");
const server = require('./server.js')

const PORT = process.env.PORT || 3000;
server.listen(PORT, () => console.log(`Listening at http://localhost:${PORT}`));
const PORT = process.env.PORT || 8080
server.listen(PORT, () => console.log(`Listening at http://localhost:${PORT}`))

0 comments on commit 66f1254

Please sign in to comment.