10 lines
146 B
Bash
Executable file
10 lines
146 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
source .env
|
|
|
|
: "${API_PORT:=8000}"
|
|
|
|
curl --silent --show-error --verbose \
|
|
"http://localhost:$API_PORT"
|