Cloudflare Workers
Learn how to set up and deploy your Carbon bot using Cloudflare Workers, including development and production environments.
Automatic Setup
Quickly set up your Carbon bot with minimal configuration using the automatic setup guide.
Other Runtimes
Explore how to set up and deploy your Carbon bot using different runtimes.
Manual Setup
This is a continuation of the Basic Setup guide. If you haven't already, make sure to follow the steps in the guide before proceeding.
Create a Fetch Handler
Using the @buape/carbon/adapters/fetch
package, you can create a handler that you can then export for Cloudflare Workers. This server will handle incoming interactions and route them to your bot.
Create a Entry Point File
To access environment variables globally in a Cloudflare Worker, Carbon uses a workaround by assigning the process.env
object to the globalThis
object before importing the main handler file. This approach allows you to access environment variables at the top level of your handler file, something that is not normally possible in Cloudflare Workers.
Add a Wrangler Configuration
You'll need to create a wrangler.toml
file in the root of your project to configure your Cloudflare Worker to use the entry point file you created. This file should look something like this:
Running in Development
Start a Proxy
Discord requires a public URL to route interactions to your project. To achieve this, you'll need to set up a proxy. The simplest way to do this is by using localtunnel
. This created public URL will be referred to as PUBLIC_URL
in the following steps.
You can use the --subdomain
flag to specify a custom subdomain for your proxy.
Set Environment Variables
First things first, you'll need to grab your Discord application's secrets from the Developer Portal and paste them in your .dev.vars
file.
Configure Portal URLs
Now that you have a public URL, navigate back to the Discord Developer Portal and set the "Interactions Endpoint URL" to <BASE_URL>/interactions
.
Invite your App
You'll need to invite your app to your server to interact with it. To do so, navigate to the Installation tab of your app in the Discord Developer Portal.
Deploy Your Commands to Discord
Finally, to deploy your commands to Discord, navigate to <BASE_URL>/deploy?secret=<DEPLOY_SECRET>
in your browser. This will send your command data to Discord to register them with your bot.
Deploying to Production
Prepare Environment
Before deploying your bot, you'll need to set your environment variables. This can be done using the Wrangler CLI.
Remember to configure your portal URLs to the URL of your Cloudflare Worker.
Deploy to Cloudflare
Once you've set your environment variables, you can deploy your bot with the following command:
Remember to deploy your commands to Discord using <BASE_URL>/deploy?secret=<DEPLOY_SECRET>
.
Last updated on