diff --git a/README.md b/README.md index ca5044e..57504b3 100644 --- a/README.md +++ b/README.md @@ -47,16 +47,16 @@ services: - PERMITTED_ATTEMPTS=3 - NO_STALLED_REMOVAL_QBIT_TAG=Don't Kill If Stalled # Radarr - - RADARR_URL=http://localhost:7878 + - RADARR_URL=http://radarr:7878 - RADARR_KEY=$RADARR_API_KEY # Sonarr - - SONARR_URL=http://localhost:8989 + - SONARR_URL=http://sonarr:8989 - SONARR_KEY=$SONARR_API_KEY # Lidarr - - LIDARR_URL=http://localhost:8686 + - LIDARR_URL=http://lidarr:8686 - LIDARR_KEY=$LIDARR_API_KEY # qBittorrent - - QBITTORRENT_URL=http://localhost:8080 + - QBITTORRENT_URL=http://qbittorrent:8080 #- QBITTORRENT_USERNAME=Your name #- QBITTORRENT_PASSWORD=Your password ``` @@ -64,7 +64,7 @@ services: ## Running manually 1) Clone the repository with `git clone https://github.com/Fxsch/decluttarr.git` -2) Tweak the `config.conf` file to your needs +2) Tweak the `config.conf` file inside the config folder to your needs (this file is disregarded when running via docker-compose.yml) 3) Run the script with `python3 main.py` ## Explanation of the settings @@ -86,7 +86,6 @@ services: ### **Features settings** - Steers which type of cleaning is applied to the downloads queue -- Requires `QUEUE_CLEANING` to be set to `True` to take effect **REMOVE_TIMER** - Sets the frequency of how often the queue is checked for orphan and stalled downloads diff --git a/config.conf b/config.conf deleted file mode 100644 index 6cc626a..0000000 --- a/config.conf +++ /dev/null @@ -1,30 +0,0 @@ -[general] -LOG_LEVEL = VERBOSE -TEST_RUN = True - -[features] -REMOVE_TIMER = 10 -REMOVE_FAILED = True -REMOVE_STALLED = True -REMOVE_METADATA_MISSING = True -REMOVE_ORPHANS = True -REMOVE_UNMONITORED = True -PERMITTED_ATTEMPTS = 3 -NO_STALLED_REMOVAL_QBIT_TAG = Don't Kill If Stalled - -[radarr] -RADARR_URL = http://localhost:7878 -RADARR_KEY = $RADARR_API_KEY - -[sonarr] -SONARR_URL = http://localhost:8989 -SONARR_KEY = $SONARR_API_KEY - -[lidarr] -LIDARR_URL = http://localhost:8686 -LIDARR_KEY = $LIDARR_API_KEY - -[qbittorrent] -QBITTORRENT_URL = http://localhost:8080 -QBITTORRENT_USERNAME = Your name (or empty) -QBITTORRENT_PASSWORD = Your password (or empty) \ No newline at end of file diff --git a/config/config.conf-Example b/config/config.conf-Example deleted file mode 100644 index 0942e11..0000000 --- a/config/config.conf-Example +++ /dev/null @@ -1,30 +0,0 @@ -[general] -LOG_LEVEL = VERBOSE -TEST_RUN = True - -[features] -REMOVE_TIMER = 10 -REMOVE_FAILED = True -REMOVE_STALLED = True -REMOVE_METADATA_MISSING = True -REMOVE_ORPHANS = True -REMOVE_UNMONITORED = True -PERMITTED_ATTEMPTS = 3 -NO_STALLED_REMOVAL_QBIT_TAG = Don't Kill If Stalled - -[radarr] -RADARR_URL = http://radarr:7878 -RADARR_KEY = $RADARR_API_KEY - -[sonarr] -SONARR_URL = http://sonarr:8989 -SONARR_KEY = $SONARR_API_KEY - -[lidarr] -LIDARR_URL = http://lidarr:8686 -LIDARR_KEY = $LIDARR_API_KEY - -[qbittorrent] -QBITTORRENT_URL = http://qbittorrent:8080 -QBITTORRENT_USERNAME = Your name (or empty) -QBITTORRENT_PASSWORD = Your password (or empty) \ No newline at end of file