Add ping endpoint for health check

This commit is contained in:
2026-06-02 01:25:06 +02:00
parent 7e3ac4d1d4
commit f6133116a2
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -26,6 +26,7 @@ app.use(cors());
app.use(express.json());
// ─── Public routes (no auth required) ────────────────────────────────────────
app.get('/api/ping', (req, res) => res.json({ ok: true }));
app.use('/api/auth', authRouter);
// ─── Protected routes (JWT required) ─────────────────────────────────────────
+1 -1
View File
@@ -10,7 +10,7 @@ services:
networks:
- sloth-net
healthcheck:
test: ["CMD", "wget", "-qO-", "http://localhost:3001/api/providers"]
test: ["CMD", "wget", "-qO-", "http://localhost:3001/api/ping"]
interval: 30s
timeout: 5s
retries: 3