This repository has been archived by the owner on Aug 19, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenv.schema.json
112 lines (112 loc) · 2.78 KB
/
env.schema.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
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Environment File",
"description": "Secret environment data",
"type": "object",
"required": ["bot", "googleAnalyticsID"],
"properties": {
"bot": {
"title": "Bot Options",
"type": "object",
"required": ["token", "votingChannel", "archiveChannel", "moderatorRoleId", "homeGuild"],
"properties": {
"token": {
"title": "Bot Token",
"description": "The secret discord api token",
"oneOf": [
{
"type": "null"
},
{
"type": "string"
}
],
"default": null
},
"votingChannel": {
"title": "Bot Voting Channel",
"description": "The discord channel id where the bot will handle votes",
"oneOf": [
{
"type": "null"
},
{
"type": "string"
}
],
"default": null
},
"archiveChannel": {
"title": "Bot Archive Channel",
"description": "The discord channel id where the bot will store previous votes.",
"oneOf": [
{
"type": "null"
},
{
"type": "string"
}
],
"default": null
},
"commentChannel": {
"title": "Bot Requests Channel",
"description": "The discord channel id where the bot will log comments.",
"oneOf": [
{
"type": "null"
},
{
"type": "string"
}
],
"default": null
},
"moderatorRoleId": {
"title": "Moderator Role ID",
"description": "The role ID of the people that can forcefully add or not add scenes.",
"oneOf": [
{
"type": "null"
},
{
"type": "string"
}
],
"default": null
},
"homeGuild": {
"title": "Guild ID",
"description": "Guild ID",
"oneOf": [
{
"type": "null"
},
{
"type": "string"
}
],
"default": null
}
}
},
"googleAnalyticsID": {
"title": "Google Analytics ID",
"description": "Code from Google Analytics to enable tracking.",
"oneOf": [
{
"type": "null"
},
{
"type": "string"
}
],
"default": null
},
"developerPassword": {
"title": "Developer Password",
"description": "Password for people to remotely live edit the cta database.",
"type": "string"
}
}
}