mirror of
https://github.com/Dictionarry-Hub/profilarr.git
synced 2026-01-23 03:11:01 +01:00
- changed from json to yaml for config - added export_path setting to set where exported files go : fixes https://github.com/santiagosayshey/Profilarr/issues/5 - exports now save to {export_path}/{app_type}/{app_name} - can choose which instance to manually import to - sync automatically chooses correct custom formats / quality profiles for the app type - updated readme with usage examples - added install requirements Closes #4, #5
21 lines
437 B
YAML
21 lines
437 B
YAML
instances:
|
|
master:
|
|
sonarr:
|
|
base_url: "http://localhost:8989"
|
|
api_key: "API_KEY"
|
|
radarr:
|
|
base_url: "http://localhost:7878"
|
|
api_key: "API_KEY"
|
|
extras:
|
|
sonarr:
|
|
- name: "4k-sonarr"
|
|
base_url: "http://localhost:8998"
|
|
api_key: "API_KEY"
|
|
radarr:
|
|
- name: "4k-radarr"
|
|
base_url: "http://localhost:7887"
|
|
api_key: "API_KEY"
|
|
|
|
settings:
|
|
export_path: "./exports"
|