-
Install Node.js V20 or higher:
- Visit the Node.js website and download the latest version of Node.js.
-
Clone the Repository:
-
Download this repository and unzip it, or use Git to clone it to your local machine.
git clone https://github.com/your-username/GirlFriend-Bot-JavaScript.git
-
-
Fill in Configuration:
-
Open the
config.js
file and fill in the required information.// config.js module.exports = { TOKEN: process.env.DISCORD_TOKEN, };
Create a
.env
file in the root directory and set your Discord token:DISCORD_TOKEN=your_bot_token_here
-
-
Install Dependencies:
-
Navigate to the project directory and install the required dependencies.
npm install
-
-
Start the Bot:
-
Run the following command to start the bot.
node index.js
-
Modify the config.js
file to customize your bot. You can add more configuration options as needed.
// config.js
require("dotenv").config();
module.exports = {
token: process.env.DISCORD_TOKEN,
// Add more configuration options here
};
If you find any bugs or have suggestions for improvements, feel free to open a pull request.
This project is licensed under the MIT License - see the LICENSE file for details.