Phase 5: ship (healthz, CI test gates, v1.0 README)

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
2026-04-18 16:42:47 -04:00
parent ef22e92ac8
commit 7253068fee
4 changed files with 258 additions and 87 deletions
+4
View File
@@ -34,6 +34,10 @@ app.use(pinoHttp({ logger }));
app.use(cors({ origin: process.env.CLIENT_URL || 'http://localhost:5173' }));
app.use(express.json());
app.get('/healthz', (_req, res) => {
res.json({ status: 'ok' });
});
const loginLimiter = rateLimit({
windowMs: 15 * 60 * 1000,
max: 10,