updated host port
All checks were successful
DevSecOps-Multibranch/pipeline/head This commit looks good

This commit is contained in:
2025-11-30 12:43:39 +00:00
parent ecb4417f2f
commit cd3b5d242d

View File

@@ -184,7 +184,7 @@ app.use((err, req, res, next) => {
}); });
// Start server // Start server
app.listen(PORT, () => { app.listen(PORT, '0.0.0.0', () => {
console.log(`🚀 Backend server running on port ${PORT}`); console.log(`🚀 Backend server running on port ${PORT}`);
console.log(`📊 Health check: http://localhost:${PORT}/health`); console.log(`📊 Health check: http://localhost:${PORT}/health`);
console.log(`📝 API endpoints: http://localhost:${PORT}/api/todos`); console.log(`📝 API endpoints: http://localhost:${PORT}/api/todos`);