Merge branch 'master' into feat/issues-48-57

This commit is contained in:
2026-07-11 20:40:22 -04:00
committed by GitHub
13 changed files with 663 additions and 9 deletions
+6
View File
@@ -29,6 +29,12 @@ router.get('/', (req, res) => {
res.redirect(301, '/hosts');
});
// Lightweight liveness probe for container healthchecks / monitoring. No auth,
// no dependencies — just confirms the Express process is up and routing.
router.get('/health', (req, res) => {
res.json({status: 'ok'});
});
router.get('/hosts', async function(req, res, next) {
res.render('hosts', {...values});
});