-
Notifications
You must be signed in to change notification settings - Fork 40
/
env.json
64 lines (64 loc) · 2.25 KB
/
env.json
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
{
"NODE_ENV": {
"description": "This defines the current environment",
"validators": [{
"name": "in",
"options": ["development", "testing", "staging", "production"]
}]
},
"TENANT": {
"required": true,
"description": "The tenant of the owning service."
},
"LOGDNA_API_KEY": {
"required": false,
"description": "If set, enables application logging to the LogDNA logger service."
},
"DISCORD_LOG_CHANNEL": {
"description": "The unique ID for the channel the bot will output logs to."
},
"DISCORD_MSGLOG_CHANNEL": {
"description": "The unique ID for the channel the bot will output message logs to."
},
"DISCORD_MEDIA_CHANNEL": {
"description": "The unique ID for the channel the bot will moderate images in."
},
"DISCORD_RULES_CHANNEL": {
"description": "The unique ID for the channel that the bot will manage rules from."
},
"DISCORD_RULES_TRIGGER": {
"description": "Text that will trigger and indicate the user has read the rules."
},
"DISCORD_RULES_ROLE": {
"description": "The unique ID for the role that the bot will *remove* when the user accepts the rules."
},
"DISCORD_DEVELOPER_ROLE": true,
"DISCORD_LOGIN_TOKEN": {
"description": "The login token of the bot."
},
"DATA_CUSTOM_RESPONSES": {
"required": false,
"description": "Whether or not to load responses.js from the data directory."
},
"GITHUB_REPOSITORY": {
"required": false,
"description": "The github repository that should be tracked (format is user/repository)"
},
"GITHUB_OLD_THRESHOLD": {
"required": false,
"description": "Issues below this treshold should be ignored"
},
"COMPAT_DB_SOURCE": {
"description": "URL to pull game compatibility information from"
},
"COMPAT_DB_REFRESH": {
"required": false,
"description": "Minimum time in milliseconds between compatibility DB refreshes (default 20 minutes)"
},
"COMPAT_ICON_BASE": {
"description": "URL (with trailing slash) to directory with <game-id>.png files"
},
"COMPAT_URL_BASE": {
"description": "URL (with trailing slash) to directory with game information pages"
}
}