.github/workflows | ||
src | ||
.gitattributes | ||
.gitignore | ||
.prettierignore | ||
.prettierrc | ||
LICENSE.md | ||
package-lock.json | ||
package.json | ||
README.md | ||
renovate.json | ||
tsconfig.json | ||
webpack.config.js | ||
wrangler.example.toml |
Pronouns
A next-gen Discord bot for managing pronouns, written for Cloudflare Workers for free and low-cost hosting, world-class reliability, infinite scalability, and fast response times around the world.
It is built for Discord interactions, like slash commands and message components, from the very beginning, so they have an experience that feels like a native part of Discord.
Check out the docs of how to use it
Invite to your server
This bot began with cloudflare/worker-typescript-template as a template, and also took inspiration from advaith1/activities and discord/cloudflare-sample-app to figure out how to best set-up and use Discord Interaction APIs.
Quick Start
Pronouns is a decent bot to use as a basis for your own Cloudflare Workers Discord bot as it contains pretty much everything you'd need from an HTTP router to a command router to per-guild storage management.
Things you need
- A Cloudflare account, set up with Workers
- A Cloudflare Workers KV store (We use the name PRONOUNS_BOT_GUILD_SETTINGS)
- A Discord bot created at https://discord.com/developers
This bot uses wrangler, so you should familiarize yourself with it to learn how to deploy your bot.
Check out discord/cloudflare-sample-app to learn how to set up your Discord bot for interactions. You'll need to set up your worker to configure interactions.
You'll want to configure the following secrets using wrangler:
DISCORD_PUBLIC_KEY
DISCORD_APPLICATION_ID
PRONOUNS_BOT_TOKEN
PRONOUNS_BOT_TEST_GUILD_ID
To register commands, you can enable the /__register
HTTP endpoint in src/server.ts
to register your commands initially. It's suggested you disable this endpoint afterward though to prevent third parties from trying to re-run command registration. Once this is done once, you can register commands globally or for your test guild using the /register_guild
and /register_global
commands in your test server (specified in PRONOUNS_BOT_TEST_GUILD_ID
).