From c2916387bb026893861da40b2048f6dfdda85d41 Mon Sep 17 00:00:00 2001 From: Trevor Hartman Date: Thu, 11 Jan 2024 11:33:34 -0700 Subject: [PATCH] Add config samples for discord --- config/config.sample.edn | 2 ++ config/profiles.sample.clj | 3 +++ config/sample.env | 3 +++ 3 files changed, 8 insertions(+) diff --git a/config/config.sample.edn b/config/config.sample.edn index 422d7c5c..7565e813 100644 --- a/config/config.sample.edn +++ b/config/config.sample.edn @@ -32,6 +32,8 @@ :token "xoxb-111111111111111111111111111111111111"} :k8s {:type "slack", :token "xoxb-9999999999999999"} + :mydiscord {:type "discord" + :token "mt111111111111111111111"} :freenode {:type "irc", :username "yetibot", :host "chat.freenode.net", diff --git a/config/profiles.sample.clj b/config/profiles.sample.clj index c74c8cdc..11d3c295 100644 --- a/config/profiles.sample.clj +++ b/config/profiles.sample.clj @@ -74,6 +74,9 @@ :yetibot-adapters-freenode-ssl "true" :yetibot-adapters-freenode-username "yetibot" + :yetibot-adapters-mydiscord-type "discord" + :yetibot-adapters-mydiscord-token "mt111111111111111111111" + :yetibot-adapters-mymattermost-type "mattermost" :yetibot-adapters-mymattermost-host "yetibot-mattermost.herokuapp.com" :yetibot-adapters-mymattermost-token "h1111111111111111111111111" diff --git a/config/sample.env b/config/sample.env index 2d82d79c..a673ce42 100644 --- a/config/sample.env +++ b/config/sample.env @@ -55,6 +55,9 @@ YETIBOT_ADAPTERS_MYTEAM_TOKEN="xoxb-111111111111111111111111111111111111" YETIBOT_ADAPTERS_K8S_TYPE="slack" YETIBOT_ADAPTERS_K8S_TOKEN="xoxb-k8s-slack-9999999999999999" +YETIBOT_ADAPTERS_MYDISCORD_TYPE="discord" +YETIBOT_ADAPTERS_MYDISCORD_TOKEN="mt111111111111111111111" + YETIBOT_ADAPTERS_FREENODE_TYPE="irc" YETIBOT_ADAPTERS_FREENODE_HOST="chat.freenode.net" YETIBOT_ADAPTERS_FREENODE_PORT="7070"