blob: fe3a21d24100e34f6773fec859907f6a65bd89c0 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
set -e
while true;
do
AUTHELIA_SERVER_DISABLE_HEALTHCHECK=true CGO_ENABLED=1 dlv --listen 0.0.0.0:2345 --headless=true --output=./authelia --continue --accept-multiclient debug cmd/authelia/*.go
sleep 3
done
|