9 lines
142 B
Bash
Executable file
9 lines
142 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"
|