at least it bombs now

main
Bel LaPointe 2025-09-25 14:40:30 -04:00
parent 0dc338df6f
commit e8e6d6469f
2 changed files with 7 additions and 5 deletions

8
.env
View File

@ -10,7 +10,7 @@ DEBUG_LEVEL = "DEBUG"
RUN_ONLY_ONCE = "True"
## How often to run the script in seconds
SLEEP_DURATION = "3600"
SLEEP_DURATION = "60"
## Log file where all output will be written to
LOG_FILE = "/mnt/log.log"
@ -29,17 +29,17 @@ MAX_THREADS = 1
## If media servers are using the same files then you can enable only generate locations
## If media servers are using different files then you can enable only generate guids
## Default is to generate both
GENERATE_GUIDS = "False"
GENERATE_GUIDS = "True"
GENERATE_LOCATIONS = "True"
## Map usernames between servers in the event that they are different, order does not matter
## Comma separated for multiple options
# jellyfin: plex,plex
USER_MAPPING = { "belandbroc": "debila,belan49" }
USER_MAPPING = { "belandbroc": "debila,belan49", "debila,belan49": "belandbroc", "debila": "belandbroc", "belan49": "belandbroc" }
## Map libraries between servers in the event that they are different, order does not matter
## Comma separated for multiple options
LIBRARY_MAPPING = { "TV Shows": "Scratch TV Shows" }
LIBRARY_MAPPING = { "TV Shows": "Scratch TV Shows", "Scratch TV Shows": "TV Shows" }
## Blacklisting/Whitelisting libraries, library types such as Movies/TV Shows, and users. Mappings apply so if the mapping for the user or library exist then both will be excluded.
## Comma separated for multiple options

4
run.sh
View File

@ -1,3 +1,5 @@
#! /usr/bin/env bash
docker run --rm -it -v "$PWD/.env:/app/.env" luigi311/jellyplex-watched:latest
d=/tmp/jellyplex.d
mkdir -p $d
docker run --rm -it -v "$d":/mnt -v "$PWD/.env:/app/.env" luigi311/jellyplex-watched:latest