-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
app.json
36 lines (36 loc) · 1.05 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
{
"name": "Slackus Sample",
"description": "Disqus monitor and notification sender to Slack",
"repository": "https://github.com/jonathanwiesel/slackus",
"keywords": [
"slack",
"disqus",
"blog"
],
"env": {
"SLACKUS_DISQUS_API_KEY": "",
"SLACKUS_DISQUS_API_SECRET": "",
"SLACKUS_DISQUS_ACCESS_TOKEN": "",
"SLACKUS_DISQUS_FORUM": {
"description": "Disqus forum(s) to check, specified by shortname, comma separated."
},
"SLACKUS_SLACK_WEBHOOK": {
"description": "URL of your Incoming WebHook in Slack."
},
"SLACKUS_INTERVAL": {
"required": false,
"description": "Number of seconds between each check (default 60).",
"value": "60"
},
"SLACKUS_DISQUS_LIMIT": {
"required": false,
"description": "The number of recent comments to check (default 25, max 100).",
"value": "25"
},
"SLACKUS_SLACK_MENTION": {
"required": false,
"description": "Users in Slack channel to mention when notification arrives, comma separated.",
"value": ""
}
}
}