-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsample.min.env
More file actions
90 lines (68 loc) · 2.84 KB
/
Copy pathsample.min.env
File metadata and controls
90 lines (68 loc) · 2.84 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
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
## Shortened version of sample.env that only contains what you most likely want to configure.
####################################
##### PIPELINE #####
####################################
# If false, hashes files present in Plex upon metadata updates to ensure they are the latest/wanted versions.
PIPELINE_SKIP_VERIFY_PRESENT_FILES=true
# If true, PIPELINE_SKIP_VERIFY_PRESENT_FILES only applies to episodes without extended versions
PIPELINE_SKIP_VERIFY_NOT_FOR_EXTENDED=false
# If false, makes sure the files existing on plex are in the correct folder and named correctly.
PIPELINE_SKIP_ORGANIZE_PRESENT_FILES=true
# If false, automatically updates metadata for files already in your Plex library, otherwise only does so for new downloads.
PIPELINE_SKIP_UPDATE_METADATA_PRESENT_FILES=true
# Set to true to prioritize extended cuts over standard releases.
PIPELINE_PREFER_EXTENDED=true
# Set to true to prefer the G-8 cut at the end of Skypiea.
PIPELINE_PREFER_ALTERNATE=false
####################################
##### LIBRARY #####
####################################
# Desired Media server ('none', 'plex', 'jellyfin', 'emby').
LIBRARY_MEDIA_SERVER=plex
####################################
##### LIBRARY - NONE #####
####################################
# The root folder where your Library should be saved (Do not Include LIBRARY_SERIES_FOLDER_NAME).
LIBRARY_NONE_ROOT_FOLDER=C:\\OnePacerr
####################################
##### LIBRARY - PLEX #####
####################################
# Plex URL.
PLEX_URL=http://localhost:32400
#Your Plex Token
PLEX_TOKEN=<your-token-here>
# Name of the Library in Plex.
PLEX_LIBRARY_NAME=TV Shows
####################################
##### LIBRARY - JELLYFIN #####
####################################
# Jellyfin URL.
JELLYFIN_URL=http://localhost:8096
# Your Jellyfin username.
JELLYFIN_USERNAME=<your-username-here>
# Your Jellyfin password.
JELLYFIN_PASSWORD=<your-password-here>
# Name of the Library in Jellyfin.
JELLYFIN_LIBRARY_NAME=Shows
####################################
##### LIBRARY - EMBY #####
####################################
# Emby URL.
EMBY_URL=http://localhost:8096
# Your Emby username.
EMBY_USERNAME=<your-username-here>
# Your Emby password.
EMBY_PASSWORD=<your-password-here>
# Name of the Library in Emby.
EMBY_LIBRARY_NAME=TV Shows
####################################
##### TORRENT #####
####################################
# Your torrent client between: `qbittorrent`, `deluge`, `transmisson` or `utorrent`.
TORRENT_CLIENT=qbittorrent
# Your torrent webUI URL.
TORRENT_URL=http://localhost:8080
# Your torrent webUI username.
TORRENT_USER=<your-username-here>
# Your torrent webUI password.
TORRENT_PASSWORD=<your-password-here>