21 lines
332 B
Bash
Executable File
21 lines
332 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -Exeuo pipefail
|
|
|
|
source integration/lib.sh
|
|
|
|
main() {
|
|
teardown_env || true
|
|
setup_env
|
|
wait_for_env
|
|
oidc_dashboard_init
|
|
echo "OIDC APP initialized. CLIENT_ID: $OIDC_CLIENT_ID CLIENT SECRET: $OIDC_CLIENT_SECRET"
|
|
gitea_root
|
|
support_repo_init
|
|
hostea_customer_simulation
|
|
teardown_env
|
|
echo "All Good! :)"
|
|
}
|
|
|
|
main
|