From b4e011e8fac77d5e6c4acdb843cdb86d95ab1ee7 Mon Sep 17 00:00:00 2001 From: Randall Stillwell Date: Wed, 23 Jul 2025 09:21:29 -0500 Subject: [PATCH] Add minimal health check API --- pages/api/health.js | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 pages/api/health.js diff --git a/pages/api/health.js b/pages/api/health.js new file mode 100644 index 0000000..532841a --- /dev/null +++ b/pages/api/health.js @@ -0,0 +1,9 @@ +export default function handler(req, res) { + // Minimal health check - no external dependencies + res.status(200).json({ + status: 'ok', + timestamp: new Date().toISOString(), + method: req.method, + url: req.url + }); +} \ No newline at end of file