Skip to content

Commit

Permalink
Add comments for default config (#103)
Browse files Browse the repository at this point in the history
  • Loading branch information
nylonee authored Feb 20, 2024
1 parent 2da4a80 commit 527aaaf
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions src/main/resources/config-template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,20 @@
#################################################################

#interval:
# seconds: 10
# seconds: 10 # DEFAULT: 60


#################################################################
## Sonarr Configuration
#################################################################

#sonarr:
# baseUrl: "127.0.0.1:8989" # Base URL for Sonarr, including the 'http' and port and any configured urlbase
# baseUrl: "127.0.0.1:8989" # Base URL for Sonarr, including the 'http' and port and any configured urlbase. DEFAULT: "127.0.0.1:8989"
# apikey: "YOUR-API-KEY" # API key for Sonarr, found in your Sonarr UI -> General settings
# qualityProfile: "Your Desired Sonarr Quality Profile" # If not set, will grab the first one it finds on Sonarr
# rootFolder: "/root/folder/location" # Root folder for Sonarr. If not set, will grab the first one it finds on Sonarr
# bypassIgnored: false
# seasonMonitoring: all # Possible values under 'MonitorTypes' in sonarr.tv/docs/api
# bypassIgnored: false # Boolean flag to bypass tv shows that are on the Sonarr Exclusion List. DEFAULT: false
# seasonMonitoring: all # Possible values under 'MonitorTypes' in sonarr.tv/docs/api. DEFAULT: all
# tags:
# - watchlistarr

Expand All @@ -30,11 +30,11 @@
#################################################################

#radarr:
# baseUrl: "127.0.0.1:7878" # Base URL for Radarr, including the 'http' and port and any configured urlbase
# baseUrl: "127.0.0.1:7878" # Base URL for Radarr, including the 'http' and port and any configured urlbase. DEFAULT: "127.0.0.1:7878"
# apikey: "YOUR-API-KEY"
# qualityProfile: "Your Desired Radarr Quality Profile" # If not set, will grab the first one it finds on Radarr
# rootFolder: "/root/folder/location" # If not set, will grab the first one it finds on Radarr
# bypassIgnored: false # Boolean flag to bypass tv shows that are on the Sonarr Exclusion List
# rootFolder: "/root/folder/location" # If not set, will grab the first one it finds on Radarr. DEFAULT: false
# bypassIgnored: false # Boolean flag to bypass movies that are on the Radarr Exclusion List
# tags:
# - watchlistarr

Expand All @@ -45,15 +45,15 @@

#plex:
# token: "YOUR-PLEX-TOKEN" # Multiple tokens can be provided
# skipfriendsync: false # Don't sync friends watchlists, only your own
# skipfriendsync: false # Don't sync friends watchlists, only your own. DEFAULT: false (e.g. sync everybody's watchlists)


#################################################################
## Delete Sync Configuration
#################################################################

#delete:
# movie: false # If enabled, movies that are not watchlisted will be deleted from Radarr
# endedShow: false # If enabled, shows that have no more planned seasons and are not watchlisted will be deleted from Sonarr
# continuingShow: false # If enabled, shows that still have planned seasons and are not watchlisted will be deleted from Sonarr
# interval.days: 7 # Number of days to wait before deleting content from the arrs (Deleting must be enabled)
# movie: false # If enabled, movies that are not watchlisted will be deleted from Radarr. DEFAULT: false
# endedShow: false # If enabled, shows that have no more planned seasons and are not watchlisted will be deleted from Sonarr. DEFAULT: false
# continuingShow: false # If enabled, shows that still have planned seasons and are not watchlisted will be deleted from Sonarr. DEFAULT: false
# interval.days: 7 # Number of days to wait before deleting content from the arrs (Deleting must be enabled). DEFAULT: 7

0 comments on commit 527aaaf

Please sign in to comment.