From 9c5116350537df92a73199c5dcf945a003c1bf7b Mon Sep 17 00:00:00 2001 From: thenatespack Date: Mon, 24 Nov 2025 16:54:20 -0700 Subject: [PATCH] fixed port conflict for webserver gitea --- start.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/start.js b/start.js index 82b8737..01c74fd 100644 --- a/start.js +++ b/start.js @@ -1,7 +1,8 @@ //Starts import app from "./app.js"; -const PORT = process.env.PORT || 3000; + +const PORT = process.env.PORT || 7653; app.listen(PORT, () => { console.log(`Transit API http://localhost:${PORT}`); -}); \ No newline at end of file +});