Sessions 5-7a: 955 tests, deployment ready

This commit is contained in:
Kev
2026-06-08 18:35:13 -04:00
parent 06b82624a2
commit 1fa04dc776
371 changed files with 49366 additions and 955 deletions
+5 -2
View File
@@ -1,7 +1,10 @@
const app = require('./app');
const PORT = process.env.PORT || 3000;
// Default 3001 — Next.js owns 3000 locally and in production. The poller,
// internal cron, and BASE_URL conventions all assume 3001 for the Express
// backend. PORT env still overrides for special-case deploys.
const PORT = process.env.PORT || 3001;
app.listen(PORT, () => {
console.log(`[BetonBLK] Server running on port ${PORT}`);
console.log(`[VYNDR] Server running on port ${PORT}`);
});