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.
authentik/scripts/generate_config.py
Marc 'risson' Schmitt 5945b36200
policies/expression: add support for dynamic variables
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>
2023-09-29 02:27:27 +02:00

26 lines
786 B
Python

"""Generate config for development"""
from yaml import safe_dump
from authentik.lib.generators import generate_id
with open("local.env.yml", "w", encoding="utf-8") as _config:
safe_dump(
{
"debug": True,
"log_level": "debug",
"secret_key": generate_id(),
"postgresql": {
"user": "postgres",
},
"outposts": {
"container_image_base": "ghcr.io/goauthentik/dev-%(type)s:gh-%(build_hash)s",
},
"blueprints_dir": "./blueprints",
"cert_discovery_dir": "./certs",
"variables_discovery_dir": "./variables",
"geoip": "tests/GeoLite2-City-Test.mmdb",
},
_config,
default_flow_style=False,
)