From 65c21d250459654400d8fcd2eebbf551bed9a276 Mon Sep 17 00:00:00 2001 From: Matthew Lopez <73856503+MatthewL246@users.noreply.github.com> Date: Thu, 12 Dec 2024 00:17:47 -0500 Subject: [PATCH] chore: update example config with Discourse settings --- example.config.json | 29 ++++++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) diff --git a/example.config.json b/example.config.json index ae8ef7d0..b23f6a62 100644 --- a/example.config.json +++ b/example.config.json @@ -46,5 +46,32 @@ "api_token": "api_token", "board_name": "board_name" }, - "api_base": "https://api.domain.com" + "api_base": "https://api.domain.com", + "discourse": { + "sso": { + "secret": "Discourse SSO secret" + }, + "api": { + "base_url": "https://discourse.example.com", + "username": "system", + "key": "Discourse API key" + }, + "groups": { + "access_level": { + "1": "testers", + "2": "juxt-moderators", + "3": "developers" + }, + "stripe_tier": { + "1": "supporters-mario", + "2": "supporters-super", + "3": "supporters-mega" + }, + "discord_role": { + "1234567890123456789": "developers", + "9876543210987654321": "discord-moderators", + "1234567890987654321": "network-moderators" + } + } + } }