Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mba2022/sysbot
This Discord bot is designed to help manage and moderate your server with ease. It includes essential moderation commands and special features to enhance user experience.
https://github.com/mba2022/sysbot
discord discord-bot discord-js discordjs mod moderation moderation-bot
Last synced: 4 months ago
JSON representation
This Discord bot is designed to help manage and moderate your server with ease. It includes essential moderation commands and special features to enhance user experience.
- Host: GitHub
- URL: https://github.com/mba2022/sysbot
- Owner: MBA2022
- License: mit
- Created: 2024-06-17T20:07:49.000Z (8 months ago)
- Default Branch: master
- Last Pushed: 2024-08-27T13:51:08.000Z (6 months ago)
- Last Synced: 2024-10-12T02:41:53.114Z (4 months ago)
- Topics: discord, discord-bot, discord-js, discordjs, mod, moderation, moderation-bot
- Language: JavaScript
- Homepage:
- Size: 177 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Discord Bot Setup Guide
This guide will help you set up your Discord bot. Follow these steps to get your bot running smoothly.
## Installation
1. [Fork](https://github.com/MBA2022/S-Bot/fork) & clone the repository
```ssh
git clone https://github.com/MBA2022/S-Bot
```
2. Make sure your `node.js` & `npm` are up to date
3. Run ```npm install``` to install all dependencies
4. Update Start Script in `package.json`
replace the start script with nodemon for automatic updates when you make changes to the code:
```js
"scripts": {
"start": "nodemon index.js"
}
```
5. Update the developer IDs in the index file with your own IDs.
```js
const developers = ['DeveloperID_1', 'DeveloperID_2'];
```
## Environment Variables6. Create a `.env` file then add the Variables as shown:
```js
TOKEN = BOT_TOKEN
CLIENTID = APP _ID
GUILDID = DEVELOPMENT_SERVER
BOT_DM_WEBHOOK_URL = WEBHOOk_URL```
## DeploymentTo deploy this project you have to add the bot to your discord server then run:
```bash
npm start
```then if you want to edit the code you don't have to restart the bot manually