Local PC 개발 및 테스트 - git 배포 - gitea webhook 단계별 설정

This commit is contained in:
2026-01-25 19:00:22 +09:00
parent 879bb2f25d
commit 005c0261c2
4 changed files with 79 additions and 45 deletions

View File

@@ -1,15 +0,0 @@
#!/usr/bin/env bash
set -euo pipefail
BASE="http://127.0.0.1"
echo "backend health:"
curl -fsS "${BASE}:18000/health" | sed 's/^/ /'
echo "backend latest:"
curl -fsS "${BASE}:18000/api/lotto/latest" | head -c 200; echo
echo "travel regions:"
curl -fsS "${BASE}:19000/api/travel/regions" | head -c 200; echo
echo "OK"