mirror of
https://github.com/TeamPiped/Piped-Backend
synced 2025-09-02 19:41:14 +02:00
7 lines
152 B
Bash
Executable File
7 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
|