feat: harden authenticated deployment

This commit is contained in:
2026-07-29 22:04:40 -04:00
parent 432dd2176f
commit 892479dceb
20 changed files with 3677 additions and 1298 deletions
+3 -1
View File
@@ -7,4 +7,6 @@ const root = path.join(path.dirname(fileURLToPath(import.meta.url)), "..");
const port = Number(process.env.PORT) || 8090;
const db = createDb();
await migrate(db);
createApp({ db, root }).listen(port, () => console.log(`Roast planner listening on ${port}`));
createApp({ db, root }).listen(port, () =>
console.log(`Roast planner listening on ${port}`),
);