forked from fateyan/Slack-Inviter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
35 lines (35 loc) · 1.04 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
{
"name": "slack-inviter",
"description": "Slack Inviter By PHP",
"repository": "https://github.com/fateyan/slack-inviter",
"env": {
"SLACK_TOKEN": {
"description": "slack token, it can be found on https://api.slack.com/web",
"required": true
},
"SLACK_DOMAIN": {
"description": "your team name of slack, {team_name}.slack.com",
"required": true
},
"SLACK_CHANNELS": {
"description": "divide by comma[,], it can be found on https://api.slack.com/methods/channel.list/test",
"required": true
},
"SLACK_HEADER": {
"value": "Hi ! Join our Slack"
},
"SLACK_SUB_HEADER": {
"value": "welcome"
},
"SLACK_TITLE": {
"description": "title of html",
"value": "Join our slack"
},
"RECAPTCHA_SITEKEY": {
"description": "Site key for reCaptcha, you can get it from https://www.google.com/recaptcha/admin"
},
"RECAPTCHA_SECRET": {
"description": "Secret key for reCaptcha, you can get it from https://www.google.com/recaptcha/admin"
}
}
}