-
Notifications
You must be signed in to change notification settings - Fork 6
/
app.json
45 lines (45 loc) · 1.06 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
{
"name": "Toshi Testnet Faucet",
"description": "A really simple Testnet Faucet based on the sample app - https://github.com/toshiapp/toshi-sofa-app",
"repository": "https://github.com/udk1/toshi-testnet-faucet",
"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"
},
"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"
}
]
}