6 lines
99 B
Bash
Executable File
6 lines
99 B
Bash
Executable File
#!/bin/sh
|
|
set -eu
|
|
|
|
PORT="${PORT:-3000}"
|
|
curl -fsS "http://127.0.0.1:${PORT}/api/health" >/dev/null
|