-
Notifications
You must be signed in to change notification settings - Fork 36
/
app.json
33 lines (33 loc) · 998 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
{
"name": "Augur Node",
"description": "A middleware node suitable for aggregating data for Augur from the Ethereum blockchain",
"repository": "https://github.com/AugurProject/augur-node",
"keywords": ["augur", "ethereum"],
"env": {
"ETHEREUM_HTTP": {
"description": "The Ethereum node HTTP endpoint.",
"value": "https://gethnode.com/http"
},
"ETHEREUM_WS": {
"description": "The Ethereum node WSS endpoint.",
"value": "wss://gethnode.com/ws"
},
"PGSSLMODE": {
"description": "SSL for sql.",
"value": "required"
},
"NETWORK": {
"description": "The Ethereum network to connect to. Possible values: `rinkeby`, `ropsten`, `environment` -- by default this will use the environment above.",
"value": "environment"
}
},
"addons": ["heroku-postgresql:standard-0"],
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-pgbouncer"
},
{
"url": "heroku/nodejs"
}
]
}