port changes

This commit is contained in:
Ramprasad 2024-11-08 13:18:58 +05:30
parent c1760f03a8
commit ecfeba51b4

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 || 5007; const PORT = process.env.PORT || 8000;
httpServer.listen(PORT, () => { httpServer.listen(PORT, () => {
console.log(`Server is running on port ${PORT}`); console.log(`Server is running on port ${PORT}`);
}); });