Port changed

This commit is contained in:
Sourya Banerjee 2024-10-18 14:56:30 +05:30
parent 1fab0febd4
commit 08c66deaf0

View File

@ -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}`);
});