Skip to content

Latest commit

 

History

History
45 lines (26 loc) · 835 Bytes

README.md

File metadata and controls

45 lines (26 loc) · 835 Bytes

Craft & Code Club - Discord Bot

Steps to create a Discord Bot

Configure Environment Variables

  1. Then we need to create a .env file with the following content in the root of the project:
DISCORD_API_TOKEN=<your_discord_api_key>

Install the required packages

dotenv

echo python-dotenv >> requirements.txt

discord.py

echo discord.py >> requirements.txt

Install packages

pip install -r requirements.txt

References