-
Notifications
You must be signed in to change notification settings - Fork 86
/
app.json
53 lines (53 loc) · 1.8 KB
/
app.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
{
"name": "slackin-extended",
"description": "Let people invite themselves to your Slack",
"logo": "https://i.imgur.com/odDO1Fx.png",
"repository": "https://github.com/emedvedev/slackin-extended",
"keywords": ["node", "slack"],
"env": {
"SLACK_SUBDOMAIN": {
"description": "Your Slack's subdomain (**this**.slack.com)",
"required": true
},
"SLACK_API_TOKEN": {
"description": "A Slack API token (find it on https://api.slack.com/custom-integrations/legacy-tokens)",
"required": true
},
"RECAPTCHA_SECRET": {
"description": "Google captcha secret key",
"required": false
},
"RECAPTCHA_SITEKEY": {
"description": "Google captcha site key",
"required": false
},
"RECAPTCHA_INVISIBLE": {
"description": "Use invisible reCAPTCHA instead of reCAPTCHA v2",
"required": false
},
"SLACKIN_COC": {
"description": "A URL to a Code of Conduct people must agree on before joining.",
"required": false
},
"SLACKIN_CHANNELS": {
"description": "Comma-separated list of single guest channels to invite them to (leave blank for a normal, all-channel invite). In order to make this work, you have to have a paid account. You'll only be able to invite as many people as your number of paying members times 5.",
"required": false
},
"SLACKIN_INTERVAL": {
"description": "How frequently (ms) to poll Slack",
"required": false
},
"SLACKIN_ANALYTICS": {
"description": "Google Analytics ID",
"required": false
},
"SLACKIN_THEME": {
"description": "Color scheme to use, \"light\" (default) or \"dark\"",
"required": false
},
"SLACKIN_ACCENT": {
"description": "Accent color to use instead of a theme default",
"required": false
}
}
}