-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfetcharr.example.yaml
171 lines (137 loc) · 5.47 KB
/
fetcharr.example.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
# yaml-language-server: $schema=https://raw.githubusercontent.com/fetcharr/fetcharr/main/config-schema.json
## Fetcharr configuration
## Uncomment the lines that you'd like to change, save and restart Fetcharr for the changes to take effect.
## Configuration for Plex watchlists, etc.
plex:
## API token for your Plex account.
## If you need help finding yours, see here: https://support.plex.tv/articles/204059436-finding-an-authentication-token-x-plex-token/
api_token: PLEX_TOKEN
## Whether to include friends' watchlists when syncing.
## Default: false
sync_friends_watchlist: false
## List of all Sonarr instances available
sonarr:
default:
## Defines whether the instance should be used.
## Default: true
# enabled: true
## Base URL of the instance.
base_url: http://localhost:8989
## API key for the instance.
api_key: SONARR_API_KEY
## Defines filters for the instance, which can limit what content gets sent to it.
filters:
## Filters items depending on item genre. Examples include: anime, action, horror, etc.
## Default: []
genre: []
## Filters items depending on their certification. Examples include: TV-PG, PG, TV-MA, etc.
## Default: []
certification: []
## Sets the root folder for newly-added items.
## Default: null
# root_folder: /mnt/TV Shows
## Sets the quality profile for newly-added items.
## Default: null
# quality_profile: HD-1080p
## Whether newly-added items should be monitored.
## Default: true
# monitored: false
## Whether the instance should search for newly-added items, right after they're added.
## Default: true
# search_immediately: false
## Whether to allow in-production series to be added to the instance.
## When in-production, genres and certifications are still not finalized; meaning filters likely won't work.
## Default: false
# allow_in_production: true
## Whether to update existing items in Sonarr or leave them as-is.
## This can help prevent unwanted overwriting to series monitoring, quality profile, etc., which have been altered in Sonarr.
## Default: true
# update_existing: false
## Sets the series type on newly-added items.
## Available values: [Standard, Daily, Anime]
## Default: Standard
# series_type: Standard
## Sets whether the series should use season folders.
## Default: true
# season_folder: false
## Whether to monitor new items within newly-added series.
## Default: false
# monitor_new_items: true
## Sets which items should be monitored for newly-added series.
## Available values: [None, All, FirstSeason, OnlyShortSeries]
## Default: FirstSeason
# monitored_items: All
## Defines what counts as a short series, in terms of season count. If less or equal to this value, it's a short series.
## Only used if `monitored_items` is set to `OnlyShortSeries``.
## Default: 3
# short_series_threshold: 1
## Example of a Sonarr instance, exclusively for anime.
# sonarr_anime:
# base_url: http://localhost:8989
# api_key: SOME_KEY
# enabled: true
#
# filters:
# genre:
# - anime
#
# root_folder: /mnt/Anime
# series_type: Anime
## List of all Radarr instances available
radarr:
default:
## Defines whether the instance should be used.
## Default: true
# enabled: true
## Base URL of the instance.
base_url: http://localhost:7878
## API key for the instance.
api_key: RADARR_API_KEY
## Defines filters for the instance, which can limit what content gets sent to it.
filters:
## Filters items depending on item genre. Examples include: anime, action, horror, etc.
## Default: []
genre: []
## Filters items depending on their certification. Examples include: TV-PG, PG, TV-MA, etc.
## Default: []
certification: []
## Sets the root folder for newly-added items.
## Default: null
# root_folder: /mnt/Movies
## Sets the quality profile for newly-added items.
## Default: null
# quality_profile: HD-1080p
## Whether newly-added items should be monitored.
## Default: true
# monitored: false
## Whether the instance should search for newly-added items, right after they're added.
## Default: true
# search_immediately: false
## Whether to allow in-production movies to be added to the instance.
## When in-production, genres and certifications are still not finalized; meaning filters likely won't work.
## Default: false
# allow_in_production: true
## Whether to update existing items in Radarr or leave them as-is.
## This can help prevent unwanted overwriting to movies monitoring, quality profile, etc., which have been altered in Radarr.
## Default: true
# update_existing: false
## Sets the minimum availability before the instance should attempt fetching the movie.
## Available values: [TBA, Announced, InCinemas, Released]
## Default: Released
# minimum_availability: InCinemas
## Sets which items should be monitored for newly-added movies.
## Available values: [None, MovieOnly, MovieAndCollection]
## Default: MovieOnly
# monitored_items: MovieAndCollection
## Example of a Radarr instance, exclusively for anime.
# radarr_anime:
# base_url: http://localhost:7878
# api_key: SOME_KEY
# enabled: true
#
# filters:
# genre:
# - anime
#
# root_folder: /mnt/Anime
# series_type: Anime