#!/usr/bin/env bash set -euo pipefail : "${APP_BASE_URL:?APP_BASE_URL is required}" curl --fail --silent --show-error "${APP_BASE_URL}/health/live" curl --fail --silent --show-error "${APP_BASE_URL}/health/ready" curl --fail --silent --show-error "${APP_BASE_URL}/" >/dev/null