Phase 2 and Demo

This commit is contained in:
2026-05-02 20:14:15 -05:00
parent d909cb7c30
commit 056bd27f89
36 changed files with 3867 additions and 299 deletions
+2
View File
@@ -10,6 +10,7 @@ import type {
import { app } from "./app.js";
import { registerSocketHandlers } from "./socket/index.js";
import { startScheduler } from "./services/scheduler.js";
import { prisma } from "./lib/prisma.js";
const PORT = parseInt(process.env["PORT"] ?? "3001", 10);
@@ -31,6 +32,7 @@ export const io = new Server<
});
registerSocketHandlers(io);
startScheduler(io);
httpServer.listen(PORT, () => {
console.log(`[server] listening on http://localhost:${PORT}`);