-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathplex-update-tba.env.example
More file actions
70 lines (58 loc) · 2.77 KB
/
plex-update-tba.env.example
File metadata and controls
70 lines (58 loc) · 2.77 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
# Plex Container IP address (can use 'docker:container_name', as above, if it's run as a docker container)
# Plex Scheme (Probably http)
# Plex Port (Probably 32400)
# Plex Access Token - If you don't know what this is, here is how to find it:
# https://support.plex.tv/articles/204059436-finding-an-authentication-token-x-plex-token/
## These four are strings
plexIp="docker:plex"
plexScheme="http"
plexPort="32400"
plexToken=""
# If you would like to ignore an entire library, add its library ID to this array
ignoreLibraries=()
# If you would like to ignore an entire series, add its rating key ID here
ignoreSeries=()
# If you would like to ignore an entire season of a series, add its rating key here
ignoreSeasons=()
# if you would like to ignore specific files, add their rating keys here
ignoreEpisodes=()
# Are we allowed to check for and notify of updates each time the script runs?
# Can be "Yes" "No" "True" "False"
## This is a string
updateCheck="No"
# How verbose do you want the output to be
# 1 = Errors only
# 2 = Warnings
# 3 = Informational
# 4 = Verbose
# 5 = Debug
outputVerbosity="3"
## Optional
# If you want to send a Discord message notfying of downloaded items, provide a webhook URL
## This is a string, for now
discordWebhook=""
# If you want to send a Telegram message notifying of renamed items, fill them out.
# Telegram bot API key, obtained from @BotFather
## This is a string
telegramBotId=""
# Telegram channel ID, if you don't know how to get this, use these instructions:
# https://gist.github.com/goose-ws/1c82c98ac4701af433eb5c7562109e51
## This is an array, so you can do multiple channels if you want.
# Format is: ("-100xxxxxxx2" "-100xxxxxxx1")
# Modifiers include threads for super groups, and silent notifications.
# If sending to a super group thread, you can specify the thread by adding '&message_thread_id=[int]',
# where [int] is the interger of the thread ID. (e.g. "-100xxxxxxxxx1&message_thread_id=12")
# For silent notifications, you can add the modifier '&silent=true' (e.g. "-100xxxxxxxxx1&silent=true")
## This is an array
telegramChannelId=()
# Do you want to send a Telegram message for script errors? Beware, the script is not capable of checking
# to see if an error message has already been sent, so depending on your cron settings this could become
# very spammy. Can be "Yes" "No" "True" "False"
## This is a string
telegramErrorMessages=""
# If you enabled Telegram messages for script errors, you can define a different channel for errors to
# be sent to, instead of the ones defined in the 'telegramChannelId' array above. This can only be a single
# channel, not an array. If you leave this blank, and have error messages enabled, then they will send to
# all channels in the 'telegramChannelId' array above.
## This is a string
telegramErrorChannel=""