Skip to main content
Version: edge

discord

The discord connector provides integration with the discord service and is used for the Tremor Community Bot which is implemented in tremor.

The connectors requires a bot application token and a set of gateway intents.

As a quick start, the liberally licensed tremor-bot can be used as a starting point for a custom bot based on tremor

Configuration

  define connector discord from discord
with
config = {
# required - A discord API token
"token" = "some-token",

"intents" = [...]

},
end;