Skip to content

📊 This is a tool for Discord.js Bot Developers to manage their bots.

Notifications You must be signed in to change notification settings

sandaruonline/discord-bot-dashboard

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

discord-bot-dashboard

Welcome

Welcome to this new project.

In this project, I develop a Dashboard Tool for developers which are using Discord.js for their bots.

You can use this for projects where you are releasing new bots for public and want to manage them, for example, to give the Discord server administrators a status update on the game status like when you're down for maintenance.

Important: Install all dependencies with npm install!

To run this project, run the command npm start. It will automatically listen to the port 3000.

In the main.js file, you can develop your bot or paste your current code!

When you want to change the port for listening, you can change it in the config.json.

Write your bot token from the Discord Applications Page into config.json inside the property value of token. Before you do this, look at the Important Information section.

Important Information:

api/main.js:

Currently:

client.login(prv_config.token);

--------------------------------

Use this when you fork this project and want to make a pull request.
You must create the file private_config.json in the main directory (same as config.json).

private_config.json will be blocked by .gitignore from committing and pushing.


When you're making a pull request, check that you didn't write your token 
inside config.json.

--------------------------------

Change it to:

client.login(config.token);

for public usage and write your bot token inside config.json.

For more information: Read the comments above the client.login function in main.js

About

📊 This is a tool for Discord.js Bot Developers to manage their bots.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HTML 48.8%
  • JavaScript 43.4%
  • CSS 7.8%