From 08c66deaf0c6a6f153e5373e3cc453a95fc488eb Mon Sep 17 00:00:00 2001 From: Sourya Banerjee Date: Fri, 18 Oct 2024 14:56:30 +0530 Subject: [PATCH] Port changed --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 34a560e..6e55d2c 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 || 5000; +const PORT = process.env.PORT || 5007; httpServer.listen(PORT, () => { console.log(`Server is running on port ${PORT}`); });