Update backend port to 3000 to match Docker Compose configuration

This commit is contained in:
Your Name
2025-04-29 18:01:17 -04:00
parent e89e3d4791
commit ffae4f909a

View File

@@ -7,7 +7,7 @@ import dotenv from 'dotenv';
dotenv.config();
const app = express();
const port = process.env.PORT || 5000;
const port = process.env.PORT || 3000;
// Middleware
app.use(cors());