port changes

This commit is contained in:
Ramprasad 2024-11-08 16:26:45 +05:30
parent ecfeba51b4
commit 623bb7f464

View File

@ -97,7 +97,7 @@ app.get("/", (req: Request, res: Response) => {
}); });
// Start the server on port 3000 // Start the server on port 3000
const PORT = process.env.PORT || 8000; const PORT = process.env.PORT || 5007;
httpServer.listen(PORT, () => { httpServer.listen(PORT, () => {
console.log(`Server is running on port ${PORT}`); console.log(`Server is running on port ${PORT}`);
}); });