fix: update health check path to correct endpoint

This commit is contained in:
2026-04-19 23:15:21 +02:00
parent 5fd91a96e8
commit 8087daa518

View File

@@ -4,7 +4,7 @@
const http = require("node:http");
const port = Number.parseInt(process.env.PORT || "3000", 10);
const path = process.env.HEALTHCHECK_PATH || "/api/templates";
const path = process.env.HEALTHCHECK_PATH || "/api/health";
const timeoutMs = Number.parseInt(process.env.HEALTHCHECK_TIMEOUT_MS || "3000", 10);
const req = http.request(