Files
profilarr/config.json
santiagosayshey 827efd6633 v0.1.3
- 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
2024-01-19 19:00:59 +10:30

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"
}
}
]
}