mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
8bab8d47ef
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.
9 lines
211 B
Bash
Executable File
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 |