This repo is a non-official version of MusicBot ready for deployment on Heroku

Just a quick note: This is not in any way official. This is just a guide on how to get the bot hosted on Heroku's free cloud service. There might be much better services out there but this works for me and so this repo is showing you how to go about setting it up yourself.

As this bot is modified from the original version, do not expect any support for it on their official Discord server. They will NOT help you. You may open an issue here if you think it's a Heroku related issue and we can try to help but please try updating the dependencies first using the instructions given near the end of this readme to see if it fixes your problem.

The original MusicBot is available here.

This is to host the Discord music bot onto your own free Heroku cloud account.

This branch is based on MusicBot release-260819. Previous releases of the bot can be found in the releases page.

Instructions to get this up and working:

Your bot will be shut down by Heroku on the last week of each month. If you're ok with this, you can follow the tutorial below. Otherwise you will need to add a credit card to have enough hours for a whole month (provided you don't have any other applications on your Heroku account)

If you have a credit card you can verify with we recommend you make a free AWS account instead and run the bot on there using the official MusicBot instructions. At the end of the day it's up to you whether you want to use Heroku or not.

There is also a possibility your bot will face 429 errors, more information here

I'm assuming you don't really know much about how to get this stuff set up so this is as basic of a tutorial as I think is necessary.
I'm also assuming you're on Windows and are willing to set this up through the Heroku CLI. Although everything should work the same regardless of OS (except the PATH variables stuff if necessary).
This is the method I personally used to get it up and running.

Instructions:

First of all: Create a Discord Bot account
Don't forget to add it to your Discord server using this URL:

https://discordapp.com/api/oauth2/authorize?client_id=INSERTHERE&permissions=775285841&scope=bot

Replace INSERTHERE in the URL with the bot client ID found in the Discord developer portal.

Download Git if you don't already have it installed, then clone this repository by typing git clone https://github.com/helionmusic/rhinobot_heroku in a Git window.

Now, edit the options.ini file inside the config folder to set your bot's necessary configuration.
If you are unsure how to do this step, refer to the MusicBot configuration guide here
Edit the options.ini and the permissions.ini to your liking.
Remember however to leave the SaveVideos = no in your options otherwise you will quickly run out of space on the Heroku server.

NEVER MAKE YOUR BOT TOKEN PUBLIC AS ANYONE CAN USE THE TOKEN TO "HIJACK" THE BOT. You can regenerate the bot token via the Discord developer portal if you accidentally made it public anywhere.

Now create a free Heroku account here if you haven't already

Once created and confirmed, go to your dashboard
Click on New and select Create new app
Give it a name and select your server location from the runtime selection dropdown

Download and install Heroku CLI from here
If you're on windows and the setup fails to correctly set the PATH variable, do the following:

To confirm Heroku CLI is installed correctly and the PATH variables have been set correctly, open a command prompt and type heroku --version. You should see a valid output if everything is fine

To confirm if git is installed correctly and its PATH variables have been set correctly, open a command prompt and type git --version. You should see a valid output if everything is fine.
If not, add the git's bin folder to the PATH variables the same way as above

Once both git and heroku cli are installed open the project's root folder in cmd

Now type the following:

Once those are set correctly continue typing the following into command prompt

Once completed, the build should push without any problems. And the Heroku worker will be set to run the bot when enabled.
To do this, type heroku ps:scale worker=1 in the command prompt.

That's it. The bot should instantly fire up and should be logged in to your discord server within the next minute.
If you've set it to auto join a voice channel it should automatically join it.

Updating youtube-dl

This bot relies on youtube-dl to make the bot work. If the bot suddenly stops working for any reason, try updating it.

Check the latest release of youtube-dl on their releases and replace the version number in the requirements.txt file.

_____

Contributors

_____

Below is the original README.md

MusicBot

GitHub stars GitHub forks Python version Discord

MusicBot is the original Discord music bot written for Python 3.5+, using the discord.py library. It plays requested songs from YouTube and other services into a Discord server (or multiple servers). Besides, if the queue becomes empty MusicBot will play through a list of existing songs with configuration. The bot features a permission system allowing owners to restrict commands to certain people. As well as playing songs, MusicBot is capable of streaming live media into a voice channel (experimental).

Main

Setup

Setting up the MusicBot is relatively painless - just follow one of the guides. After that, configure the bot to ensure its connection to Discord.

The main configuration file is config/options.ini, but it is not included by default. Simply make a copy of example_options.ini and rename it to options.ini. See example_options.ini for more information about configurations.

Commands

There are many commands that can be used with the bot. Most notably, the play <url> command (preceded by your command prefix) will download, process, and play a song from YouTube or a similar site. A full list of commands is available here.

Further reading