Add ping endpoint for health check
This commit is contained in:
@@ -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
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user