lab/go-api/fail
Oliver Davies d6e1888ec2 Refactor
Signed-off-by: Oliver Davies <oliver@oliverdavies.uk>
2025-09-23 08:03:09 +01:00

13 lines
211 B
Bash
Executable file

#!/usr/bin/env bash
set -euo pipefail
source .env
STATUS_CODE="${1:-500}"
: "${API_PORT:=8000}"
curl --silent --show-error --verbose \
"http://localhost:$API_PORT" \
--header "force-fail: $STATUS_CODE"