Add /healthz endpoint

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
King Omar 2026-07-21 19:14:52 +10:00
parent aa45ebc769
commit 9e072630e8

View file

@ -54,6 +54,8 @@ app.get('/sitemap.xml', async (c) => {
200, { 'Content-Type': 'application/xml', 'Cache-Control': 'public, max-age=3600' })
})
app.get('/healthz', (c) => c.json({ ok: true, app: 'kneadly' }))
// ─── Routes ──────────────────────────────────────────────────────────────────
app.route('/api', apiRoutes)
app.route('/webhooks', webhookRoutes)