Automatically change the rootFolder of a requested item depending on whether it is an anime-movie, cartoon, documentary, reality, animated series.
- Install the requirements
pip install -r requirements.txt
- Configure the .env file to your needs
- Only uncomment the
request.post
block if you use ntfy - Run with
python main.py
ornohup python main.py &
(detached) - In Seerr, turn on
webhook notification agent
and enablerequest pending approval
notification type - Add the url for the webhook, for example,
192.168.1.5:5001/webhook
- Add the following template and save
{
"requestID": "{{request_id}}",
"mediaId": "{{media_tmdbid}}",
"mediaType": "{{media_type}}",
"{{extra}}": [],
"image": "{{image}}",
"message": "{{message}}"
}
- Clone this repo
- Navigate to the rootfolder of this repo
- Run
docker build -t seerr-route .
- Configure the .env file
- Run the docker container with the env file passed in
docker run --env-file ./.env seerr-route
Make url, rootfolders, port passable as args or through env- Add more notification agents (discord, telegram)
- Make notifications selectable especially for docker
- Push image to dockerhub/ghcr.io
- Create a docker-compose
- Configure CI workshops to build Docker inage
- Add in a python binary with all dependencies packaged into it