Installation
Last updated
Was this helpful?
Last updated
Was this helpful?
While logged in, head to the Discord Developer Portal.
Click the "New Application" button and name it the name of your bot.
Click the "Bot" button from the sidebar, and click "Add Bot".
Now that you have created a bot, you may change its username and icon. Click the "Click to Reveal Token" button or the "Copy" button to get your bot's token.
Rename example.env
to .env
All of your bot and client secrets will be stored here (don't share it with anybody!)
After renaming the file, add the token and client id to the .env file. It should end up looking something like this:
Some bots may require access to and process data from certain "privileged" parts of the API and you may need to enable Gateway Intents. You may enable them as shown below with the Discord Developer Portal.
Dependencies are located in the package.json file and can be installed by running npm i
while in the bot's directory. If you are missing your package.json file, please contact me directly.
All of my current bots require a newer version of NodeJS (I've tested them on 18.20.3)!
The following steps assume that you have NodeJS already installed.
Install a process manager such as pm2. We will use this to run the bot 24/7.
Navigate to wherever you unpacked the bot and proceed to the next step.
While in the bot's root directory, execute npm i
. This will install the dependencies needed for the bot to run.
The following steps are for pm2. If you are using another manager, please follow their docs. If you don't already have a bot account, refer to the "Creating the bot application" section
Follow the pm2 docs to get the bot running 24/7
Refer to your host's documentation on how to set up a Discord bot. The bot's main file/entry point is dist/index.js
After creating your Discord application and bot user, navigate to the OAuth2 page. Under scopes, click the "bot" checkbox AND "Use Slash Commands." After that, all you need to do is navigate to the generated URL and invite the bot to your server as normal.