forked from jeremyhenrickson/token-app-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
50 lines (50 loc) · 1.22 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "Toshi SOFA App",
"description": "Foundation for building a SOFA app for Toshi (Chat Bot / Web View)",
"repository": "https://github.com/toshiapp/toshi-sofa-app",
"env": {
"TOKEN_APP_SEED": {
"description": "12 word secret backup phrase"
},
"TOKEN_APP_USERNAME": {
"description": "Choose a username for your app: letters, numbers, and underscores only"
},
"TOKEN_APP_NAME": {
"description": "Choose a display name - all characters allowed"
},
"STAGE": {
"description": "Stage of deployment: development (default) or production",
"value": "production",
"required": true
},
"NODE_MODULES_CACHE": {
"description": "Enable the often-troublesome npm/yarn cache",
"value": "false",
"required": false
}
},
"formation": {
"headless-client": {
"quantity": 1,
"size": "free"
},
"bot": {
"quantity": 1,
"size": "free"
}
},
"addons": [
{
"plan": "heroku-redis:hobby-dev"
},{
"plan": "heroku-postgresql:hobby-dev"
}
],
"buildpacks": [
{
"url": "heroku/nodejs"
},{
"url": "heroku/gradle"
}
]
}