Add health checks
All checks were successful
Build and Push Docker Image / build (push) Successful in 39s

This commit is contained in:
2026-04-21 16:14:29 -07:00
parent 38336301e9
commit 149489c8b8
3 changed files with 15 additions and 2 deletions

View File

@@ -116,6 +116,7 @@ Bun.serve({
},
});
},
"/healthz": new Response('ok'),
"/*": (req) => {
if(req.headers.get("shell-loaded") === "true") {
return compressResponse(renderToString(<NotFound />), 404);