chore: add dev deploy apply preflight

This commit is contained in:
HWLAB Code Queue
2026-05-21 16:40:59 +00:00
parent f1367da333
commit d312cd0f3f
10 changed files with 878 additions and 5 deletions
+1 -1
View File
@@ -46,7 +46,7 @@ export function buildHealthPayload() {
async function routeRequest(request, response, options) {
const url = new URL(request.url || "/", "http://hwlab-cloud-api.local");
if (request.method === "GET" && url.pathname === "/health") {
if (request.method === "GET" && (url.pathname === "/health" || url.pathname === "/health/live")) {
sendJson(response, 200, buildHealthPayload());
return;
}