-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.json
More file actions
39 lines (39 loc) · 1.16 KB
/
config.example.json
File metadata and controls
39 lines (39 loc) · 1.16 KB
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
{
"seerrApiUrl": "http://your-seerr-instance:5055",
"seerrApiKey": "your-seerr-api-key",
"plexUrl": "http://your-plex-instance:32400",
"plexToken": "your-plex-token",
"port": "8080",
"logLevel": "info",
"defaultListSize": 100,
"categories": {
"trending-movies": {
"enabled": true,
"listSize": 100,
"collectionName": "Trending Movies",
"plexLibrary": "Movies",
"libraryPath": "/stubs-movies"
},
"trending-series": {
"enabled": true,
"listSize": 100,
"collectionName": "Trending TV Shows",
"plexLibrary": "TV Shows",
"libraryPath": "/stubs-tv"
},
"popular-movies": {
"enabled": true,
"listSize": 100,
"collectionName": "Popular Movies",
"plexLibrary": "Movies",
"libraryPath": "/stubs-movies"
},
"popular-series": {
"enabled": true,
"listSize": 100,
"collectionName": "Popular TV Shows",
"plexLibrary": "TV Shows",
"libraryPath": "/stubs-tv"
}
}
}