#!/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"