https://github.com/drew-chase/plex-bot
A discord bot to add tv shows and movies to plex using sonarr and radarr
https://github.com/drew-chase/plex-bot
discord-bot discordnet plex radarr sabnzbd sonarr
Last synced: 3 months ago
JSON representation
A discord bot to add tv shows and movies to plex using sonarr and radarr
- Host: GitHub
- URL: https://github.com/drew-chase/plex-bot
- Owner: Drew-Chase
- License: apache-2.0
- Created: 2023-04-24T12:35:13.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-04-24T13:47:54.000Z (over 2 years ago)
- Last Synced: 2024-05-02T05:01:36.254Z (over 1 year ago)
- Topics: discord-bot, discordnet, plex, radarr, sabnzbd, sonarr
- Language: C#
- Homepage:
- Size: 448 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Overview
A discord bot to add tv shows and movies to plex using sonarr and radarr
# Commands
`/movie|tv search {query}`
Example: `/movie search Captain Marvel`
Response:
### Watch Trailer
# Settings
Path: `{application directory}/data/config/settings.json`
```json
{
"DiscordToken": "",
"TMDbToken": "",
"Plex": {
"Host": "http://127.0.0.1",
"Port": 32400,
"Token": ""
},
"Radarr": {
"Host": "http://127.0.0.1",
"LanguageProfileId": 1,
"Port": 8310,
"QualityProfileId": 1,
"RootFolderPath": "",
"Token": ""
},
"SabNZBD": {
"Host": "http://127.0.0.1",
"Port": 8080,
"Token": ""
},
"Sonarr": {
"Host": "http://127.0.0.1",
"LanguageProfileId": 1,
"Port": 8989,
"QualityProfileId": 1,
"RootFolderPath": "",
"Token": ""
}
}
```