bunker/server/entrypoint.sh
Stanislav N. aka pztrn 3cfc74affa
All checks were successful
Linting and tests / Linting (push) Successful in 6s
Client build scripts fixes and server stub with local devzone.
2025-09-13 18:13:50 +05:00

9 lines
219 B
Bash
Executable File

#!/bin/sh
echo "* Starting bunkerd..."
if [ -n "${BUNKERD_DEBUG}" ]; then
exec /dlv --listen=:4000 --headless=true --log=true --accept-multiclient --api-version=2 exec /bunkerd --continue
else
exec /bunkerd
fi