-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
33 lines (33 loc) · 891 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
30
31
32
33
{
"name": "Kippino",
"description": "A Slack bot that keeps track of your KPIs",
"keywords": [
"productivity",
"KPI",
"slack",
"bot"
],
"website": "http://www.measurence.com/tech-blog/2016/10/25/tracking-kpis-with-slack.html",
"repository": "https://github.com/measurence/kippino",
"image": "node:6.8.0",
"env": {
"SLACK_TOKEN": {
"description": "The token for your Slack bot (see README)",
"required": true
},
"SPREADSHEET_ID": {
"description": "The ID of your Google Spreadsheet (see README)",
"required": true
},
"NPM_CONFIG_PRODUCTION": {
"description": "Whether to install dev dependencies",
"value": "false",
"required": true
},
"BUILD_ON_INSTALL": {
"description": "Whether to build the script after installing deps",
"value": "true",
"required": true
}
}
}