-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
26 lines (26 loc) · 987 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": "Forsta Live Chat",
"description": "A Forsta chat bot that facilitates communication with incoming customers.",
"repository": "https://github.com/ForstaLabs/forsta-live-chat-bot.git",
"logo": "https://raw.githubusercontent.com/ForstaLabs/forsta-compliance-monitor/master/images/forsta-logo.svg?sanitize=true",
"keywords": ["forsta", "messaging", "bot", "live", "chat"],
"website": "https://forsta.io",
"addons": ["heroku-postgresql"],
"env": {
"RELAY_STORAGE_BACKING": {
"description": "Controls 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 live chat bot be via SSL.",
"required": true,
"value": "yes"
}
},
"buildpacks": [{
"url": "heroku/ruby"
}, {
"url": "heroku/nodejs"
}]
}