From ecfeba51b4e8707efbbf094ef9f95bbe98331ebb Mon Sep 17 00:00:00 2001 From: Ramprasad Date: Fri, 8 Nov 2024 13:18:58 +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 1e85897..1ca0bea 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 || 5007; +const PORT = process.env.PORT || 8000; httpServer.listen(PORT, () => { console.log(`Server is running on port ${PORT}`); });