diff --git a/apps/server/src/app.ts b/apps/server/src/app.ts index 862398c5c..3e69bf234 100644 --- a/apps/server/src/app.ts +++ b/apps/server/src/app.ts @@ -64,6 +64,11 @@ function buildApp({ auth, characterService, chatService, providerService }: AppD }, internalError.statusCode) }) + /** + * Health check route. + */ + .on('GET', '/health', c => c.json({ status: 'ok' })) + /** * Auth routes are handled by the auth instance directly, * Powered by better-auth.