-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- changed from json to yaml for config - added export_path setting to set where exported files go : fixes #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
- Loading branch information
1 parent
c39d477
commit 4834cfd
Showing
7 changed files
with
396 additions
and
169 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
instances: | ||
master: | ||
sonarr: | ||
base_url: "http://localhost:8989" | ||
api_key: "cebbd35f27554964bc5203b19ec58673" | ||
radarr: | ||
base_url: "http://localhost:7878" | ||
api_key: "611c1454f0034196bdbdb4c2c2f5f859" | ||
extras: | ||
sonarr: | ||
- name: "4k-sonarr" | ||
base_url: "http://localhost:8998" | ||
api_key: "8b22f808956f4036ac01ccd5a2e9658f" | ||
radarr: | ||
- name: "4k-radarr" | ||
base_url: "http://localhost:7887" | ||
api_key: "a60e8976b6804462b70578d87145ba59" | ||
|
||
settings: | ||
export_path: "./exports" |
Oops, something went wrong.