The best music bot created by @hewkawar
First, install the necessary dependencies:
npm installConfigure the following environment variables before running the bot:
Discord Developer
Set up your bot token and client ID from the Discord Developer Portal:
# Discord bot token
TOKEN=your_discord_bot_token_here
# Discord client ID
CLIENT_ID=your_client_id_hereTrueMoney Wallet Voucher
# TrueMoney phone number
TRUEMONEY_PHONE_NUMBER=your_truemoney_phone_number_hereWebhook
# Webhook URLs
DONATE_WEBHOOK_URL=your_donate_webhook_url_here
ERROR_WEBHOOK_URL=your_error_webhook_url_hereLavalink
Configure your Lavalink nodes. More information here:
# Nodes configuration
NODES='[{"identifier":"Local", "regions": ["My Home"], "host":"0.0.0.0","port":2333,"password":"your_lavalink_password","secure":false}]'Log
# Analytics channel ID
ANALYTIC_CHANNEL_ID=your_analytic_channel_id_here
# Log channel ID
GUILD_LOG=your_guilds_log_channel_id_hereShards
# Total Shards default "auto"
SHARDS=autoMongoDB
Set your MongoDB connection URL. More information here:
# MongoDB connection URL
MONGODB_URL=your_mongodb_url_hereConfig
# Server port
PORT=8233Run the bot using Docker with the following command:
docker run -d --restart always \
--name hstudio \
-e TOKEN=your_discord_bot_token_here \
-e CLIENT_ID=your_client_id_here \
-e TRUEMONEY_PHONE_NUMBER=your_truemoney_phone_number_here \
-e DONATE_WEBHOOK_URL=your_donate_webhook_url_here \
-e NODES='[{"identifier":"Local", "regions": ["My Home"], "host":"0.0.0.0","port":2333,"password":"your_lavalink_password","secure":false}]' \
-e ANALYTIC_CHANNEL_ID=your_analytic_channel_id_here \
-e MONGODB_URL=your_mongodb_url_here \
-e GUILD_LOG=your_log_channel_id_here \
-e SHARDS=auto \
-e PORT=8233 \
-p 8233:8233 \
hewkawar/hstudio-bot:latestClone the repository and install the dependencies:
git clone https://github.com/HStudioDiscordBot/HStudioSource.git
cd HStudioSource
npm installMake sure to configure your
.envfile before running the bot:
npm run botHStudio uses Crowdin for localization management.
For support, join our Discord server.