-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconfig.yaml
170 lines (150 loc) · 3.58 KB
/
config.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
# yaml-language-server: $schema=https://raw.githubusercontent.com/nuxencs/seasonpackarr/develop/schemas/config-schema.json
# config.yaml
# Hostname / IP
#
# Default: "0.0.0.0"
#
host: "0.0.0.0"
# Port
#
# Default: 42069
#
port: 42069
clients:
# Client name used in the autobrr filter, can be customized to whatever you like
# Note that a client name has to be unique and can only be used once
#
# Default: default
#
default:
# qBittorrent Hostname / IP
#
# Default: "127.0.0.1"
#
host: "127.0.0.1"
# qBittorrent Port
#
# Default: 8080
#
port: 8080
# qBittorrent Username
#
# Default: "admin"
#
username: "admin"
# qBittorrent Password
#
# Default: "adminadmin"
#
password: "adminadmin"
# Pre Import Path of qBittorrent for Sonarr
# Needs to be filled out correctly, e.g. "/data/torrents/tv-hd"
#
# Default: ""
#
preImportPath: ""
# Below you can find an example on how to define a second qBittorrent client
# If you want to define even more clients just copy this segment and adjust the values accordingly
#
#multi_client_example:
# host: "127.0.0.1"
#
# port: 9090
#
# username: "example"
#
# password: "example"
#
# preImportPath: ""
# seasonpackarr logs file
# If not defined, logs to stdout
# Make sure to use forward slashes and include the filename with extension. eg: "logs/seasonpackarr.log", "C:/seasonpackarr/logs/seasonpackarr.log"
#
# Optional
#
# logPath: ""
# Log level
#
# Default: "DEBUG"
#
# Options: "ERROR", "DEBUG", "INFO", "WARN", "TRACE"
#
logLevel: "DEBUG"
# Log Max Size
# Max log size in megabytes
#
# Default: 50
#
# logMaxSize: 50
# Log Max Backups
# Max amount of old log files
#
# Default: 3
#
# logMaxBackups: 3
# Smart Mode
# Toggles smart mode to only download season packs that have a certain amount of episodes from a release group
# already in the client
#
# Default: false
#
# smartMode: false
# Smart Mode Threshold
# Sets the threshold for the percentage of episodes out of a season that must be present in the client
# In this example 75% of the episodes in a season must be present in the client for it to be downloaded
#
# Default: 0.75
#
# smartModeThreshold: 0.75
# Parse Torrent File
# Toggles torrent file parsing to get the correct folder name
#
# Default: false
#
# parseTorrentFile: false
# Fuzzy Matching
# You can decide for which criteria the matching should be less strict, e.g. repack status and HDR format
#
fuzzyMatching:
# Skip Repack Compare
# Toggle comparing of the repack status of a release, e.g. repacked episodes will be treated the same as a non-repacked ones
#
# Default: false
#
skipRepackCompare: false
# Simplify HDR Compare
# Toggle simplification of HDR formats for comparing, e.g. HDR10+ will be treated the same as HDR
#
# Default: false
#
simplifyHdrCompare: false
# API Token
# If not defined, removes api authentication
#
# Optional
#
# apiToken: ""
# Notifications
# You can decide which notifications you want to receive
#
notifications:
# Notification Level
# Decides what notifications you want to receive
#
# Default: [ "MATCH", "ERROR" ]
#
# Options: "MATCH", "INFO", "ERROR"
#
# Examples:
# [ "MATCH", "INFO", "ERROR" ] would send everything
# [ "MATCH", "INFO" ] would send all matches and rejection infos
# [ "MATCH", "ERROR" ] would send all matches and errors
# [ "ERROR" ] would only send all errors
#
notificationLevel: [ "MATCH", "ERROR" ]
# Discord
# Uses the given Discord webhook to send notifications for various events
#
# Optional
#
discord: ""