Discord Bot which can communicate with several APIs like Ombi, Sonarr, Radarr and Tautulli which are related to home streaming. Based off of node:9.3
- Search for Movies & TV Shows in Ombi
- Request Movies & TV Shows in Ombi
- Get a list of all Libraries on your Server in Tautulli
- More features for Ombi, Sonarr and Radarr following soon...
Before starting your bot you will need to invite it to your server first. I recommend using this for beginners: https://discordapi.com/permissions.html Your bot will need following permissions:
- Read Messages
- Embed Links
- Read Message History
- Use External Emojis
- Send Messages
- Manage Messages
- Attach Files
- Mention @everyone
- Add Reactions
It's a bit more than the bot actually needs but if anything new is beeing added to the bot, it will already have the permissions to do it. Enter your bot client id into the field down below in the Permission Calculator. You can get it from your bot application site where you created your bot. Next click on the link at the bottom and invite the bot to your server.
Go into the Mellow root folder and type
yarn prestart
To start the bot just simply type
yarn start
After starting the bot you will need to configure it by visiting youripordomain:5060
and filling out the Bot Settings which will start the bot with your token.
Note: It's recommended to set a username and password in General Settings. This way only you can access the web interface.
If you want to use this bot in a docker container you have to follow these steps:
- Pull from docker hub:
docker pull voidp/mellow
- Run docker image:
docker run -d --restart=always --name mellow \
-v /opt/appdata/mellow/:/usr/src/app/data/ \
-p 5060:5060 \
voidp/mellow
- if you want persistent data create a folder in
/opt/appdata/mellow/
or use docker compose. A yaml file is provided for this purpose.
- Fork it (https://github.com/v0idp/Mellow/fork)
- Create your feature branch (
git checkout -b feature/fooBar
) - Commit your changes (
git commit -am 'Add some fooBar'
) - Push to the branch (
git push origin feature/fooBar
) - Create a new Pull Request