-
Notifications
You must be signed in to change notification settings - Fork 7
/
app.json
43 lines (43 loc) · 1.27 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
{
"name": "tbtcswap-lp-node",
"description": "Node for tbtcswap liquidity providers",
"keywords": [
"tbtc",
"submarine-swaps"
],
"buildpacks": [
{
"url": "https://github.com/corollari/tbtcswaps"
},
{
"url": "heroku/nodejs"
}
],
"repository": "https://github.com/corollari/tbtcswaps",
"env": {
"LND_URL": {
"description": "URL of the LND instance that will handle all lightning operations. Remember to set `tlsextraip` to enable remote connections. Example: '1.1.1.1:10009'"
},
"LND_CERT": {
"description": "base64 encoded file ~/.lnd/tls.cert. Example: '7924ab...c6f8dd'"
},
"LND_MACAROON": {
"description": "base64 encoded file ~/.lnd/data/chain/bitcoin/mainnet/admin.macaroon. Example: '7924ab...c6f8dd'"
},
"INFURA_ID": {
"description": "Infura project ID that will be used for all ethereum communicaction. Example: '3ddcb...6a36f0'"
},
"ETH_PRIVATEKEY": {
"description": "Private key of the ethereum account that has been registered as an operator. The account must own enough ETH to perform the contract calls. Example: '7924ab...c6f8dd'"
}
},
"formation": {
"web": {
"quantity": 1,
"size": "hobby"
}
},
"addons": [
"heroku-redis:hobby-dev"
]
}