forked from flexd/slackinviter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
29 lines (29 loc) · 897 Bytes
/
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
{
"name": "Slackinviter",
"description": "Let people invite themselves to your Slack",
"logo": "https://i.imgur.com/8mRVeMn.png",
"keywords": ["go", "slack"],
"image": "heroku/go:1.6",
"mount_dir": "http://github.com/flexd/slackinviter",
"website": "https://github.com/flexd/slackinviter",
"repository": "https://github.com/flexd/slackinviter",
"env": {
"SLACKINVITER_SLACKTOKEN": {
"description": "A Slack API token (find it on https://api.slack.com/web)",
"required": true
},
"SLACKINVITER_CAPTCHASITEKEY": {
"description": "Recaptcha sitekey",
"required": true
},
"SLACKINVITER_CAPTCHASECRET": {
"description": "Recaptcha secret key",
"required": true
},
"SLACKINVITER_COCURL": {
"description": "Url to a code of conduct",
"value": "http://coc.golangbridge.org/",
"required": false
}
}
}