-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathapp.json
31 lines (31 loc) · 1.18 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
{
"name": "Forsta Message Vault",
"description": "A Forsta 'monitor' bot that stores of all message traffic in an organization for forensic e-discovery.",
"repository": "https://github.com/ForstaLabs/forsta-message-vault.git",
"logo": "https://raw.githubusercontent.com/ForstaLabs/forsta-message-vault/master/images/forsta-logo.svg?sanitize=true",
"keywords": ["forsta", "messaging", "bot", "e-discovery"],
"website": "https://forsta.io",
"addons": ["heroku-postgresql"],
"env": {
"RELAY_STORAGE_BACKING": {
"description": "Control where bot settings and data will be stored. For the vault, 'postgresql' is required.",
"required": true,
"value": "postgres"
},
"WEBSITE_URL": {
"description": "Optional website URL to include in broadcasts to authorized users.",
"required": false,
"value": "https://this.servers.url.com"
},
"HEROKU_FORCE_SSL": {
"description": "Require that all communications with the message vault be via SSL.",
"required": true,
"value": "yes"
}
},
"buildpacks": [{
"url": "heroku/ruby"
}, {
"url": "heroku/nodejs"
}]
}