-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.example.json
59 lines (59 loc) · 1.67 KB
/
config.example.json
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
{
"dry_run": true,
"log_level": "INFO",
"schedule_interval": "1d",
"plex": {
"base_url": "https://plex.domain.com",
"token": ""
},
"radarr": {
"enabled": true,
"api_key": "",
"base_url": "https://radarr.domain.com/api/v3",
"exempt_tag_names": [
"exempt-from-auto-delete",
"some-other-tag"
],
"watched_deletion_threshold": "180d",
"unwatched_deletion_threshold": "30d"
},
"sonarr": {
"enabled": true,
"api_key": "",
"base_url": "https://sonarr.domain.com/api/v3",
"monitor_continuing_series": true,
"exempt_tag_names": [
"exempt-from-auto-delete",
"some-other-tag"
],
"dynamic_load": {
"enabled": false,
"episodes_to_load": 3,
"episodes_to_keep": 3,
"watched_deletion_threshold": "30d",
"schedule_interval": "5m"
},
"watched_deletion_threshold": "180d",
"unwatched_deletion_threshold": "30d"
},
"overseerr": {
"enabled": true,
"api_key": "",
"base_url": "https://overseerr.domain.com/api/v1",
"fetch_limit": 20
},
"experimental": {
"free_space": {
"enabled": false,
"minimum_free_space_percentage": 20,
"path": "/mnt/local/Media",
"prevent_age_based_deletion": true,
"prevent_dynamic_load": true,
"progressive_deletion": {
"enabled": false,
"maximum_deletion_cycles": 0,
"threshold_reduction_per_cycle": "1d"
}
}
}
}