chore: update backend port to 5008 and frontend to 3008

This commit is contained in:
Kailasdevdas
2026-04-23 13:30:11 +05:30
parent 39e5590dd8
commit bb98ddf514
6 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -56,7 +56,7 @@ app.use("/api/email", emailConfigRoutes);
app.use("/api/newsMedia", newsMediaRoutes);
app.use("/api/import", importRoutes);
const PORT = process.env.PORT || 3000;
const PORT = process.env.PORT || 5008;
app.listen(PORT, () => {
console.log(`Server running on port ${PORT}`);
});