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