Automatically unmonitor promotional singles from Lidarr.
Go to file
dependabot[bot] 70b4524d9d
Bump eslint-plugin-jsdoc from 39.6.9 to 39.7.4 (#15) [skip ci]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-01-30 08:29:52 -06:00
.github tag also? 2023-01-17 10:48:38 -06:00
.vscode Initial Commit 2023-01-10 17:39:36 -06:00
src Closes #12. (Untested) 2023-01-26 08:38:23 -06:00
.dockerignore .dockerignore 2023-01-11 14:10:04 -06:00
.editorconfig Initial Commit 2023-01-10 17:39:36 -06:00
.env.example Closes #12. (Untested) 2023-01-26 08:38:23 -06:00
.eslintrc.json basically works 2023-01-10 19:16:25 -06:00
.gitattributes Initial Commit 2023-01-10 17:39:36 -06:00
.gitignore Initial Commit 2023-01-10 17:39:36 -06:00
Dockerfile Closes #3. 2023-01-11 10:39:36 -06:00
LICENSE.md Initial Commit 2023-01-10 17:39:36 -06:00
README.md Closes #12. (Untested) 2023-01-26 08:38:23 -06:00
package-lock.json Bump eslint-plugin-jsdoc from 39.6.9 to 39.7.4 (#15) [skip ci] 2023-01-30 08:29:52 -06:00
package.json Bump eslint-plugin-jsdoc from 39.6.9 to 39.7.4 (#15) [skip ci] 2023-01-30 08:29:52 -06:00

README.md

Automatically unmonitor promotional singles from Lidarr.

Running

docker run --rm \
    --name lidarr-true-singles \
    -e LIDARR_URL=http://localhost:8686 \
    -e LIDARR_API_KEY=your_api_key \
    -e UNMONITOR=false \
    -e DELETE=false \
    -e OUTPUT_UNMONITORED=false \
    ghcr.io/chxseh/lidarr-true-singles:latest
Environment Variable Description Default
LIDARR_URL The URL to your Lidarr instance http://localhost:8686
LIDARR_API_KEY Your Lidarr API Key
UNMONITOR Whether to unmonitor the tracks or not false
DELETE Whether to delete the tracks or not false
OUTPUT_UNMONITORED Print unmonitored singles that are downloaded. Note that this overrides the UNMONITOR option. false
Environment Variable Outcome
UNMONITOR=false See duplicate singles
UNMONITOR=true Unmonitor duplicate singles
UNMONITOR=true
DELETE=true
Delete duplicate singles
OUTPUT_UNMONITORED=true See duplicate unmonitored singles that are downloaded
OUTPUT_UNMONITORED=true
DELETE=true
Delete duplicate unmonitored singles that are downloaded

Development

git clone https://github.com/chxseh/lidarr-true-singles.git
cd lidarr-true-singles
npm i
cp .env.example .env
# Edit .env with your Lidarr URL and API Key
node .