-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
26 lines (26 loc) · 1.02 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
{
"name": "Forsta Compliance Monitor",
"description": "A Forsta 'monitor' bot that monitors all message traffic in an organization to flag messages with noteworthy content.",
"repository": "https://github.com/ForstaLabs/compliance-monitor.git",
"logo": "https://raw.githubusercontent.com/ForstaLabs/compliance-monitor/master/images/forsta-logo.svg?sanitize=true",
"keywords": ["forsta", "messaging", "bot", "compliance", "monitor"],
"website": "https://forsta.io",
"addons": ["heroku-postgresql"],
"env": {
"RELAY_STORAGE_BACKING": {
"description": "Control where bot settings and data will be stored. For heroku 'postgresql' is recommended.",
"required": false,
"value": "postgres"
},
"HEROKU_FORCE_SSL": {
"description": "Require that all communications with the compliance monitor be via SSL.",
"required": true,
"value": "yes"
}
},
"buildpacks": [{
"url": "heroku/ruby"
}, {
"url": "heroku/nodejs"
}]
}