Anotha one
Some checks failed
Deploy Encrypted Todo App / build-and-push (push) Has been cancelled

This commit is contained in:
2025-06-16 09:40:00 -06:00
parent 317fda81e3
commit d1515e1990
2 changed files with 6 additions and 35 deletions

View File

@ -251,7 +251,7 @@ app.patch("/api/users/:userId/todos/:todoGroupId", (req, res) => {
}
});
const PORT = process.env.PORT || 3000;
const PORT = 3000;
server.listen(PORT, () => {
console.log(`Server running on port ${PORT}`);
console.log(`Server running on port 3000`);
});