forked from orliesaurus/greetingslack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
26 lines (26 loc) · 777 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
{
"name": "GreetingSlack",
"description": "This app connects to your slack team and greets new joiners with a custom msg",
"keywords": [
"productivity",
"Slack",
"bot"
],
"website": "https://github.com/orliesaurus/greetingslack",
"repository": "https://github.com/orliesaurus/greetingslack",
"env": {
"SLACK-TOKEN": {
"description": "Your Slack API Token",
"value": "1234-12314123123-123123123",
"required": "true"
},
"UNFURL-LINKS": {
"description": "We UNFURL only the last link by default, trust me its good",
"value": "true"
},
"WELCOME-MESSAGE": {
"description": "Your Welcome message string",
"value": "A personalized welcome msg that is broadcasted to your Slack Users"
}
}
}