mirror of
https://github.com/Dictionarry-Hub/profilarr.git
synced 2026-01-22 19:01:02 +01:00
- improved debugging info for exports - improved user control while exporting - added config file to add paths / api keys - added master setup for radarr / sonarr to sync from (not implemented yet) - adjusted custom format file names to be consistent with qp's - combined import functionality into a single script - improved debugging info for imports (functionality is still the same) - error messages for profile naming conflicts, bad auth and missing app - up to date set of profiles / custom formats as of 19/01/24
26 lines
503 B
JSON
26 lines
503 B
JSON
{
|
|
"master": {
|
|
"sonarr": {
|
|
"base_url": "http://localhost:8989",
|
|
"api_key": "API_GOES_HERE"
|
|
},
|
|
"radarr": {
|
|
"base_url": "http://localhost:7878",
|
|
"api_key": "API_GOES_HERE"
|
|
}
|
|
},
|
|
"extra_installations": [
|
|
{
|
|
"name": "example",
|
|
"sonarr": {
|
|
"base_url": "http://otherhost1:8989",
|
|
"api_key": "API_GOES_HERE"
|
|
},
|
|
"radarr": {
|
|
"base_url": "http://otherhost1:7878",
|
|
"api_key": "API_GOES_HERE"
|
|
}
|
|
}
|
|
]
|
|
}
|