Actually have A UI for the first time in 21 weeks #5

Merged
nspackman merged 8 commits from backend into main 2025-11-24 18:24:57 -08:00
Showing only changes of commit 9c51163505 - Show all commits

View File

@@ -1,7 +1,8 @@
//Starts //Starts
import app from "./app.js"; import app from "./app.js";
const PORT = process.env.PORT || 3000;
const PORT = process.env.PORT || 7653;
app.listen(PORT, () => { app.listen(PORT, () => {
console.log(`Transit API http://localhost:${PORT}`); console.log(`Transit API http://localhost:${PORT}`);
}); });