From 623bb7f464ec09b0b95cecd0b41852f44853422b Mon Sep 17 00:00:00 2001 From: Ramprasad Date: Fri, 8 Nov 2024 16:26:45 +0530 Subject: [PATCH] port changes --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 1ca0bea..1e85897 100644 --- a/src/index.ts +++ b/src/index.ts @@ -97,7 +97,7 @@ app.get("/", (req: Request, res: Response) => { }); // Start the server on port 3000 -const PORT = process.env.PORT || 8000; +const PORT = process.env.PORT || 5007; httpServer.listen(PORT, () => { console.log(`Server is running on port ${PORT}`); });