From 9e072630e80bc242aeecd1e62889423fdeb9d838 Mon Sep 17 00:00:00 2001 From: King Omar Date: Tue, 21 Jul 2026 19:14:52 +1000 Subject: [PATCH] Add /healthz endpoint Co-Authored-By: Claude Opus 4.8 (1M context) --- src/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/index.js b/src/index.js index e8dbf33..61e0030 100644 --- a/src/index.js +++ b/src/index.js @@ -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)