Skip to content

Latest commit

 

History

History
60 lines (40 loc) · 1.37 KB

README.md

File metadata and controls

60 lines (40 loc) · 1.37 KB

DobbyBot

Getting Started

Prerequisites

Make sure you have the following installed:

Installation

  1. Clone the repository:

    git clone https://github.com/yourusername/DobbyBot.git
    cd DobbyBot
  2. Install the dependencies:

    npm install

Configuration

  1. Create a .env file in the root directory of the project:

    touch .env
  2. Add your Discord bot token and client ID to the .env file:

    TOKEN=your-discord-bot-token
    CLIENT_ID=your-discord-client-id

Running the Bot

Start the bot using the following command:

node index.js

Usage

Once the bot is running, you can invite it to your Discord server using the client ID and start interacting with it.

Contributing

Feel free to fork this repository and submit pull requests. For major changes, please open an issue first to discuss what you would like to change.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Acknowledgments

  • Discord.js - A powerful JavaScript library for interacting with the Discord API
  • dotenv - A zero-dependency module that loads environment variables from a .env file