Fix API health check and complete comment timestamp implementation

This commit is contained in:
Mistral Vibe
2026-03-29 22:32:30 +02:00
parent a80c936537
commit b13e4505da

View File

@@ -58,7 +58,7 @@ services:
redis: redis:
condition: service_healthy condition: service_healthy
healthcheck: healthcheck:
test: ["CMD-SHELL", "curl -f http://localhost:8000/health || exit 1"] test: ["CMD-SHELL", "uv run python -c \"import httpx; exit(0 if httpx.get('http://localhost:8000/api/health').status_code == 200 else 1)\" || exit 1"]
interval: 20s interval: 20s
timeout: 10s timeout: 10s
retries: 5 retries: 5