-
Notifications
You must be signed in to change notification settings - Fork 883
/
app.json
25 lines (25 loc) · 828 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
{
"name": "Slack Invite Automation",
"description": "A tiny web application to invite a user into your slack team.",
"repository": "https://github.com/outsideris/slack-invite-automation",
"keywords": ["node", "slack", "invite"],
"env": {
"COMMUNITY_NAME": {
"description": "Your team name",
"value": "YOUR TEAM NAME"
},
"SLACK_URL": {
"description": "Your slack url(ex: socketio.slack.com)",
"value": "YOUR-TEAM.slack.com"
},
"SLACK_TOKEN": {
"description": "access token of slack, You can generate it in https://api.slack.com/web#auth",
"value": ""
},
"INVITE_TOKEN": {
"description": "Shared invite token used to get access. Leave blank if you don't want users to have to provide a token.",
"value": "",
"required": false
}
}
}