A self-hosted platform to manage Discord bots and Node.js applications.
Self-host this app for $0.99/mo only!
Depends on a proprietary service outside the user's control

.env, new setting options addedCC-BY-4.0 to MIT## Install PM2 Globally
npm i pm2 -g
## Install forever Globally
npm i forever -g
## Download Code
git clone https://github.com/jareer12/DiscordBotPanel.git
## Open the folder
cd DiscordBotPanel
## Install Required Modules
npm install
### Rename .env
mv .env.example .env
## Clone this repository
git clone https://github.com/jareer12/DiscordBotPanel.git
## Rename .env - Change everything to your liking except PORT
mv .env.example .env
Username: admin
Password: admin
Once installation is done, you can change the .env.example file name to .env and configure it to your liking.
By default the login system is disabled but you can enable it by changing LOGIN_REQUIRED=false to LOGIN_REQUIRED=true in your .env file. Credentials can be set from the env too.
Once the installation and configuration is complete we can start our panel and run it. We'll be using forever to run the panel, the reason we'll use forever is that it can prevent downtime, so in case our panel runs into and error that it can not handle(which it most likely will), forever will re-start the panel by itself, preventing downtime.
## Open the folder
cd DiscordBotPanel
## Run the panel
forever start index.js
## This can also be used but is not recommended
cd DiscordBotPanel && node .
docker compose up -d
server {
listen 80;
server_name server.jubot.site; ## Your Server
location / {
proxy_pass http://localhost:2278; ### Replace "2278" With Your Port(If You Changed).
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $host;
}
}Please login to review this project.
No reviews for this project yet.
Your own online file storage, social network or email serve…
Community project to develop, design and promote personal s…
Server operating system aiming to make self-hosting accessi…
Comments (0)
Please login to join the discussion on this project.