This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
|
"""Utility script to generate a config for CI runs"""
|
|
from authentik.providers.oauth2.generators import generate_client_id
|
|
from yaml import safe_dump
|
|
|
|
with open("local.env.yml", "w") as _config:
|
|
safe_dump({
|
|
"secret_key": generate_client_id()
|
|
}, _config, default_flow_style=False)
|