add new settings to config generator
All checks were successful
git.dreamfall.space/pnut-matrix/pipeline/head This commit looks good

This commit is contained in:
Morgan McMillian 2025-01-18 06:27:16 -08:00
parent 58a9de6eef
commit c23889b6a8

View file

@ -81,7 +81,10 @@ def generate_config(ctx, listen_addr, homeserver, domain, namespace, sender,
pnut.add("app_key", app_key) pnut.add("app_key", app_key)
pnut.add("global_stream", False) pnut.add("global_stream", False)
pnut.add("global_room", "<ROOM_ID>") pnut.add("global_room", "<ROOM_ID>")
pnut.add("global_humans_only", True) pnut.add("news_stream", False)
pnut.add("news_room", "<ROOM_ID>")
pnut.add("bot_stream", False)
pnut.add("bot_room", "<ROOM_ID>")
config.add("pnut", pnut) config.add("pnut", pnut)
click.echo() click.echo()