diff --git a/index.js b/index.js index a05f1479..9cee6c80 100644 --- a/index.js +++ b/index.js @@ -30,6 +30,9 @@ app.get("/db-check", async (req, res) => { } }); +app.get("/health", (req, res) => { + res.status(200).json({ status: "ok" }); +}); // --- Route d’accueil --- app.get("/", (req, res) => {