updated port

This commit is contained in:
shivam 2025-03-18 19:54:56 +05:30
parent dfd65ac6dd
commit 9f9da65ace

View File

@ -32,7 +32,7 @@ app.use((err, req, res, next) => {
res.status(err.status || 500).json({ error: err.message || 'Internal Server Error' });
});
const PORT = process.env.PORT || 3000;
const PORT = process.env.PORT || 5500;
app.listen(PORT, () => {
console.log(`Server running on port ${PORT}`);
});