Update health check URL and adjust app port mapping in Docker configuration
Some checks failed
Test & Deploy API / test (push) Successful in 1m41s
Test & Deploy API / deploy (push) Failing after 11s

This commit is contained in:
2026-03-03 18:11:51 +01:00
parent 8d8d35868b
commit abb66ee115
2 changed files with 2 additions and 2 deletions

View File

@@ -83,7 +83,7 @@ jobs:
# ── Health check ──
echo "Waiting for app..."
sleep 5
HTTP_CODE=$(curl -s -o /dev/null -w "%{http_code}" http://localhost:8000/api/v1/health)
HTTP_CODE=$(curl -s -o /dev/null -w "%{http_code}" http://localhost:8080/api/v1/health)
if [ "$HTTP_CODE" -eq 200 ]; then
echo "✅ API is healthy (HTTP ${HTTP_CODE})"
else