Add /healthz endpoint
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
aa45ebc769
commit
9e072630e8
1 changed files with 2 additions and 0 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue