Welcome to DiscordBot, a customizable Discord bot developed by RedFox Studios. Designed to be flexible and efficient, this bot provides an array of commands that enhance your Discord server experience.
- 🛠️ Easily extendable commands
- ⚙️ Configurable settings via
config.json
- đź“ś Modular command structure
To set up and run DiscordBot on your local environment, follow these steps:
-
Clone the repository:
git clone https://github.com/RedFox-Studios/DiscordBot.git cd DiscordBot
-
Install dependencies:
npm install
-
Configure the bot:
Editconfig.json
with your bot token and other configuration details. -
Start the bot:
node index.js
Edit the config.json
file to customize bot settings, including the Discord bot token and command prefixes. Make sure to keep this file secure.
Example config.json
:
{
"token": "BOT_TOKEN",
"prefix": "!",
"clientId": "CLIENT_ID"
}
The bot comes with a set of pre-configured commands found in the commands/
directory. You can add or modify commands as needed.
We welcome contributions! Please fork the repository and create a pull request with your changes. Be sure to follow coding standards and add documentation as necessary.
This project is licensed under the terms of the MIT License.
If it’s a Node.js bot, you won’t need requirements.txt
(that’s for Python). Instead, use package.json
to list dependencies like "discord.js"
for Node.js bots. If you don’t have package.json
yet, run this:
npm init -y
npm install discord.js dotenv
This creates package.json
with your dependencies (which acts like requirements.txt
in Python).