mirror of
https://github.com/jarulsamy/Plex-Bot.git
synced 2024-08-19 15:01:55 +02:00
📝 Overhaul docs
Add better detail of bot creation Add badges Add sample docker-compose.yml
This commit is contained in:
parent
9cbd0be424
commit
af91883635
94
README.md
94
README.md
@ -1,55 +1,113 @@
|
|||||||
# Plex-Bot
|
# Plex-Bot
|
||||||
|
|
||||||
|
[![GPLv3 license](https://img.shields.io/badge/License-GPLv3-blue.svg)](http://perso.crans.org/besson/LICENSE.html)
|
||||||
|
![docker pulls](https://img.shields.io/docker/pulls/jarulsamy/plex-bot)
|
||||||
|
![docker img size](https://img.shields.io/docker/image-size/jarulsamy/plex-bot)
|
||||||
|
<a href="https://github.com/psf/black"><img alt="Code style: black" src="https://img.shields.io/badge/code%20style-black-000000.svg"></a>
|
||||||
|
|
||||||
A Python-based Plex music bot for discord.
|
A Python-based Plex music bot for discord.
|
||||||
|
|
||||||
|
![screenshot](assets/screenshot.png)
|
||||||
|
|
||||||
## Setup
|
## Setup
|
||||||
|
|
||||||
Plex-Bot runs entirely in a Docker container. Ensure you have Docker and docker-compose installed according to the official Docker [documentation](https://docs.docker.com/get-docker/).
|
Plex-Bot runs entirely in a Docker container. Ensure you have Docker and docker-compose installed according to the official Docker [documentation](https://docs.docker.com/get-docker/).
|
||||||
|
|
||||||
1. Clone the repository and `cd` into it:
|
1. Create a new folder and `cd` into it:
|
||||||
|
|
||||||
```
|
```
|
||||||
$ git clone https://github.com/jarulsamy/Plex-Bot
|
$ mkdir Plex-Bot
|
||||||
$ cd Plex-Bot
|
$ cd Plex-Bot
|
||||||
```
|
```
|
||||||
|
|
||||||
2. Create a configuration folder:
|
2. Make a `docker-compose.yml` file or use this sample:
|
||||||
|
|
||||||
Create a new `config` folder and copy the sample config file into it:
|
```yml
|
||||||
|
version: "3"
|
||||||
|
services:
|
||||||
|
plex-bot:
|
||||||
|
container_name: "PlexBot"
|
||||||
|
image: jarulsamy/plex-bot:latest
|
||||||
|
environment:
|
||||||
|
- PUID=1000
|
||||||
|
- PGID=1000
|
||||||
|
- TZ=America/Denver
|
||||||
|
# Required dir for configuration files
|
||||||
|
volumes:
|
||||||
|
- "./config:/config:ro"
|
||||||
|
restart: "unless-stopped"
|
||||||
|
```
|
||||||
|
|
||||||
|
3. Create a configuration folder:
|
||||||
|
|
||||||
|
Create a new `config` folder and create a config file like this:
|
||||||
|
|
||||||
```
|
```
|
||||||
$ mkdir config
|
$ mkdir config
|
||||||
$ cp sample-config.yaml config/config.yaml
|
$ cd config
|
||||||
```
|
```
|
||||||
|
|
||||||
3. Create a Discord bot application:
|
```yml
|
||||||
|
# Create a file called config.yaml with the following contents
|
||||||
|
|
||||||
1. Go to the Discord developer portal, [here](https://discord.com/developers/applications).
|
root:
|
||||||
|
log_level: "info"
|
||||||
|
|
||||||
2. Log in or create an account
|
discord:
|
||||||
|
prefix: "?"
|
||||||
|
token: "<BOT_TOKEN>"
|
||||||
|
log_level: "debug"
|
||||||
|
|
||||||
3. Click New App
|
plex:
|
||||||
|
base_url: "<BASE_URL>"
|
||||||
|
token: "<PLEX_TOKEN>"
|
||||||
|
library_name: "<LIBRARY_NAME>"
|
||||||
|
log_level: "debug"
|
||||||
|
```
|
||||||
|
|
||||||
4. Fill in App Name and anything else you'd like to include
|
4. Create a Discord bot application:
|
||||||
|
|
||||||
5. Click Create App
|
* Go to the Discord developer portal, [here](https://discord.com/developers/applications).
|
||||||
|
|
||||||
|
* Log in or create an account
|
||||||
|
|
||||||
|
* Click New App
|
||||||
|
|
||||||
|
* Fill in App Name and anything else you'd like to include
|
||||||
|
|
||||||
|
* Click Create App
|
||||||
This will provide you with your Client ID and Client Secret
|
This will provide you with your Client ID and Client Secret
|
||||||
|
|
||||||
6. Click Create Bot User
|
* Click Create Bot User
|
||||||
This will provide you with your bot Username and Token
|
This will provide you with your bot Username and Token
|
||||||
|
|
||||||
7. Fill in all the necessary numbers in `config/config.yaml`
|
* Fill in the bot token in `config/config.yaml`
|
||||||
|
|
||||||
4. Get your plex token:
|
5. Get your plex token:
|
||||||
|
|
||||||
Refer to the official [plex documentation](https://support.plex.tv/articles/204059436-finding-an-authentication-token-x-plex-token/).
|
* Refer to the official [plex documentation](https://support.plex.tv/articles/204059436-finding-an-authentication-token-x-plex-token/).
|
||||||
|
|
||||||
Add it to `config/config.yaml` in the appropiate spot.
|
* Add it to `config/config.yaml` in the appropiate spot.
|
||||||
|
|
||||||
5. Start the service:
|
6. Customize remaining settings
|
||||||
|
|
||||||
|
Set any remaining settings in the config file that you would like. Such as music library, and base url of the Plex server.
|
||||||
|
|
||||||
|
7. Start the service:
|
||||||
|
|
||||||
```
|
```
|
||||||
$ docker-compose up --build
|
$ docker-compose up -d
|
||||||
|
```
|
||||||
|
|
||||||
|
## Logs
|
||||||
|
|
||||||
|
You can view the logs with the following command
|
||||||
|
|
||||||
|
```
|
||||||
|
$ docker-compose logs -f CONTAINER_NAME_OR_ID
|
||||||
|
|
||||||
|
# For example
|
||||||
|
$ docker-compose logs -f PlexBot
|
||||||
```
|
```
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
BIN
assets/screenshot.png
Normal file
BIN
assets/screenshot.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 17 KiB |
Loading…
Reference in New Issue
Block a user