Files
tar-valon-ansible/app-configs/rinoa/multi-scrobbler/config.json.j2
T
Trez.One 6156d07013
Gitea Branch PR & Ansible Deployment / Check and Create PR (push) Successful in 47s
Gitea Branch PR & Ansible Deployment / Ansible Dry Run (lunafreya) (push) Failing after 1m48s
Gitea Branch PR & Ansible Deployment / Ansible Dry Run (ultima) (push) Failing after 5m52s
Gitea Branch PR & Ansible Deployment / Ansible Dry Run (rinoa) (push) Failing after 8m16s
Gitea Branch PR & Ansible Deployment / Ansible Dry Run (aranea) (push) Successful in 9m25s
Gitea Branch PR & Ansible Deployment / Ansible Dry Run (rikku) (push) Successful in 9m31s
Gitea Branch PR & Ansible Deployment / PR Merge (push) Has been skipped
Gitea Branch PR & Ansible Deployment / Ansible Config Deployment (aranea) (push) Has been skipped
Gitea Branch PR & Ansible Deployment / Ansible Config Deployment (lunafreya) (push) Has been skipped
Gitea Branch PR & Ansible Deployment / Ansible Config Deployment (rikku) (push) Has been skipped
Gitea Branch PR & Ansible Deployment / Ansible Config Deployment (rinoa) (push) Has been skipped
Gitea Branch PR & Ansible Deployment / Ansible Config Deployment (ultima) (push) Has been skipped
Whitespace fixing.
2026-07-13 12:25:21 -04:00

107 lines
2.8 KiB
Django/Jinja

{
"global": {
"debugMode": false,
"disableWeb": false,
"baseUrl": "http://<YOUR_HOST>:9078",
"port": 9078,
"logLevel": "info"
},
"sourceDefaults": {
"logPayload": false,
"logFilterFailure": "warn",
"logPlayerState": false,
"scrobbleThresholds": {
"duration": 30,
"percent": 20
},
"maxPollRetries": 1,
"maxRequestRetries": 1,
"retryMultiplier": 1.5
},
"clientDefaults": {
"maxRequestRetries": 1,
"retryMultiplier": 1.5
},
"sources": [
{
"type": "lastfm",
"enabled": true,
"name": "lastfmSource",
"clients": ["ListenBrainzClient", "malojaClient"],
"data": {
"apiKey": "\{\{ vault.kv2_field\('env', 'LASTFM_API_KEY', vault_engine_mount_point) }}",
"secret": "\{\{ vault.kv2_field\('env', 'LASTFM_API_SECRET', vault_engine_mount_point) }}",
"redirectUri": "https://scrobble.trez.wtf/lastfm/callback"
}
},
{
"type": "listenbrainz",
"enabled": true,
"name": "listenBrainzSource",
"clients": ["lastFmClient", "malojaClient"],
"data": {
"token": "\{\{ vault.kv2_field\('env', 'MALOJA_LISTENBRAINZ_TOKEN', vault_engine_mount_point) }}",
"username": "Trez.One"
}
},
{
"type": "subsonic",
"enabled": true,
"name": "navidromeSource",
"clients": ["lastFmClient", "ListenBrainzClient", "malojaClient"],
"data": {
"url": "http://navidrome:4533",
"user": "admin",
"password": "\{\{ vault.kv2_field\('env', 'NAVIDROME_PASSWORD', vault_engine_mount_point) }}"
}
}
],
"clients": [
{
"type": "lastfm",
"enabled": true,
"name": "lastFmClient",
"data": {
"apiKey": "\{\{ vault.kv2_field\('env', 'LASTFM_API_KEY', vault_engine_mount_point) }}",
"secret": "\{\{ vault.kv2_field\('env', 'LASTFM_API_SECRET', vault_engine_mount_point) }}",
"redirectUri": "https://scrobble.trez.wtf/lastfm/callback"
}
},
{
"type": "listenbrainz",
"enabled": true,
"name": "ListenBrainzClient",
"data": {
"token": "\{\{ vault.kv2_field\('env', 'MALOJA_LISTENBRAINZ_TOKEN', vault_engine_mount_point) }}",
"username": "Trez.One"
}
},
{
"type": "maloja",
"enabled": true,
"name": "malojaClient",
"data": {
"url": "http://maloja:42010",
"apiKey": "\{\{ vault.kv2_field\('env', 'MALOJA_API_KEY', vault_engine_mount_point) }}"
}
}
],
"webhooks": [
{
"name": "Gotify",
"type": "gotify",
"url": "http://gotify",
"token": "\{\{ vault.kv2_field\('env', 'MULTI_SCROBBLER_GOTIFY_TOKEN', vault_engine_mount_point) }}",
"priorities": {
"info": 5,
"warn": 7,
"error": 10
}
}
]
}