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.
2022-08-01 21:05:58 +00:00
|
|
|
"""Generate config for development"""
|
|
|
|
from yaml import safe_dump
|
|
|
|
|
|
|
|
from authentik.lib.generators import generate_id
|
|
|
|
|
2023-04-18 11:28:19 +00:00
|
|
|
with open("local.env.yml", "w", encoding="utf-8") as _config:
|
2022-08-01 21:05:58 +00:00
|
|
|
safe_dump(
|
|
|
|
{
|
|
|
|
"log_level": "debug",
|
|
|
|
"secret_key": generate_id(),
|
|
|
|
"postgresql": {
|
|
|
|
"user": "postgres",
|
|
|
|
},
|
|
|
|
"outposts": {
|
|
|
|
"container_image_base": "ghcr.io/goauthentik/dev-%(type)s:gh-%(build_hash)s",
|
|
|
|
},
|
2022-08-02 22:05:49 +00:00
|
|
|
"blueprints_dir": "./blueprints",
|
2022-08-01 21:05:58 +00:00
|
|
|
"web": {
|
|
|
|
"outpost_port_offset": 100,
|
|
|
|
},
|
|
|
|
"cert_discovery_dir": "./certs",
|
|
|
|
"geoip": "tests/GeoLite2-City-Test.mmdb",
|
|
|
|
},
|
|
|
|
_config,
|
|
|
|
default_flow_style=False,
|
|
|
|
)
|