authelia/internal/suites/example/compose/authelia/resources/run-backend-dev.sh
Amir Zarrinkafsh 8bab8d47ef
[MISC] Add CLI suite (#1597)
This change adds a new integration testing suite "CLI".

The intent of this suite is to test, validate and capture coverage for Authelia's commands via the CLI.
2021-01-16 21:25:02 +11:00

9 lines
211 B
Bash
Executable File

#!/bin/sh
set -e
while true;
do
dlv --listen 0.0.0.0:2345 --headless=true --output=./authelia --continue --accept-multiclient debug cmd/authelia/*.go -- --config /config/configuration.yml
sleep 10
done