-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
44 lines (44 loc) · 1007 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
34
35
36
37
38
39
40
41
42
43
44
{
"name": "Token Sofa App",
"description": "Foundation for building a SOFA app for Token (Chat Bot / Web View)",
"repository": "https://github.com/tokenbrowser/token-sofa-app",
"env": {
"TOKEN_APP_USERNAME": {
"description": "Choose a username for your app, no spaces",
"required": false
},
"TOKEN_APP_ID": {
"description": "Ethereum address that identifies your app"
},
"TOKEN_APP_PAYMENT_ADDRESS": {
"description": "Ethereum address that is used for ETH transactions"
},
"TOKEN_APP_SEED": {
"description": "12 word secret backup phrase"
}
},
"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"
}
]
}