mirror of
https://github.com/TeamPiped/Piped-Backend.git
synced 2026-06-22 21:15:25 +00:00
6 lines
152 B
Bash
Executable file
6 lines
152 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
# If PORT env var is set, use it, otherwise default to 8080
|
|
PORT=${PORT:-8080}
|
|
|
|
curl -f http://localhost:$PORT/healthcheck || exit 1
|