From af836df1acfc8557b1718773c8fdf368d5958bcf Mon Sep 17 00:00:00 2001 From: gahusb Date: Mon, 25 May 2026 21:02:02 +0900 Subject: [PATCH] =?UTF-8?q?feat(healthcheck):=20tarot-lab(18250)=20+=20saj?= =?UTF-8?q?u-lab(18300)=20=ED=97=AC=EC=8A=A4=EC=B2=B4=ED=81=AC=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit deploy.sh/deploy-nas.sh/docker-compose.yml/nginx의 5위치는 이미 동기화됐으나 scripts/healthcheck.sh가 누락되어 있어 추가. - 7. Tarot Lab: /health + /api/tarot/readings - 8. Saju Lab: /health + /api/saju/readings - 10. Frontend (nginx): /api/tarot/, /api/saju/ proxy 검증 추가 Co-Authored-By: Claude Opus 4.7 (1M context) --- scripts/healthcheck.sh | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/scripts/healthcheck.sh b/scripts/healthcheck.sh index 5bf20eb..7ec0d78 100644 --- a/scripts/healthcheck.sh +++ b/scripts/healthcheck.sh @@ -58,13 +58,25 @@ check_url "Agent Office Health" "http://localhost:18900/health" check_url "Agent Office Agents" "http://localhost:18900/api/agent-office/agents" echo "" -echo "--- 7. Travel Proxy ---" +echo "--- 7. Tarot Lab ---" +check_url "Tarot Health" "http://localhost:18250/health" +check_url "Tarot Readings" "http://localhost:18250/api/tarot/readings" + +echo "" +echo "--- 8. Saju Lab ---" +check_url "Saju Health" "http://localhost:18300/health" +check_url "Saju Readings" "http://localhost:18300/api/saju/readings" + +echo "" +echo "--- 9. Travel Proxy ---" check_url "Travel Regions" "http://localhost:19000/api/travel/regions" echo "" -echo "--- 8. Frontend (Nginx) ---" +echo "--- 10. Frontend (Nginx) ---" check_url "Frontend Home" "http://localhost:8080" check_url "Nginx->Backend Proxy" "http://localhost:8080/api/lotto/latest" +check_url "Nginx->Tarot Proxy" "http://localhost:8080/api/tarot/readings" +check_url "Nginx->Saju Proxy" "http://localhost:8080/api/saju/readings" echo "" echo "======================================"