-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
64 lines (52 loc) · 1.85 KB
/
.env.example
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
###################
# GENERAL #
###################
# Comma seperated string of discord user ids.
# If you have developer mode enabled in Discord,
# you can simply right click any user and click `Copy ID`
# to get this.
#
# **To enable developer mode:**
# Go to Discord > Settings > Advanced > Toggle `Developer Mode` on
#
BOT_WHITELIST=
# The max number of movies/series to list in table/dropdown from the search.
BOT_MAX_CONTENT=8
# Your Discord Bots Token.
# If you followed the guide: refer to step 6.
DC_TOKEN=
# Your Discord Applications Client ID.
# If you followed the guide: refer to step 5.
DC_CLIENT_ID=
##################
# RADARR #
##################
# URL to your Radarr instance.
# If you are not accessing your radarr instance from
# your local network, probably best to use `https`.
RADARR_URL=http://MYIP:7878
# Radarr API Key
# You can find this in Radarr, by going to Settings > General,
# under the `Security` section, you will find your API Key.
RADARR_KEY=
# Whether or not to monitor and search for movie on add.
# Valid values: true, false
RADARR_MONITOR=true
##################
# SONARR #
##################
# URL to your Sonarr instance.
# If you are not accessing your sonarr instance from
# your local network, probably best to use `https`.
SONARR_URL=http://MYIP:8989
# Sonarr API Key
# You can find this in Sonarr, by going to Settings > General,
# under the `Security` section, you will find your API Key.
SONARR_KEY=
# Whether or not to monitor and search for series on add.
# Valid values:
# - all - Monitor and search for all missing seasons.
# - none - Will add show as 'unmonitored'.
# - firstSeason - Monitor and search for only the first season.
# - latestSeason - (seems to be bugged on sonarr, could just be my instance) Monitor and search for only the latest season.
SONARR_MONITOR=firstSeason