From 66f1254e3620d96a1e5ce0b9da9b3dbd18017b1a Mon Sep 17 00:00:00 2001 From: AlexVOiceover Date: Tue, 23 Jan 2024 12:52:06 +0000 Subject: [PATCH] updated default port --- src/index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/index.js b/src/index.js index 466a1c7..228d045 100644 --- a/src/index.js +++ b/src/index.js @@ -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}`))