From e6d9ba77d6944ad779f20bc2f78e3fc48985fe3e Mon Sep 17 00:00:00 2001 From: David Glymph Date: Fri, 16 Jun 2023 10:06:01 -0400 Subject: [PATCH] add healthz endpoint --- pages/api/healthz.js | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 pages/api/healthz.js diff --git a/pages/api/healthz.js b/pages/api/healthz.js new file mode 100644 index 00000000..9711a2cc --- /dev/null +++ b/pages/api/healthz.js @@ -0,0 +1,3 @@ +export default function handler(_, res) { + res.status(200).json({ healthy: true }); +}