-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
app.json
33 lines (33 loc) · 851 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": "lnme",
"description": "LnMe - your friendly ⚡ payment page",
"repository": "https://github.com/bumi/lnme",
"logo": "https://bitcoin.org/img/icons/logotop.svg",
"keywords": ["payments", "lightning", "bitcoin"],
"env": {
"LNME_LND_ADDRESS": {
"description": "LND Address (e.g. 42.42.21.21:10009)",
"value": ""
},
"LNME_LND_MACAROON": {
"description": "LND macaroon as HEX",
"value": ""
},
"LNME_LND_CERT": {
"description": "LND TLS cert as HEX",
"value": ""
},
"LNME_TOR_EXE_PATH": {
"description": "Path to the tor executable",
"value": "/app/tor/bin/tor"
}
},
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-go"
},
{
"url": "https://github.com/iamashks/heroku-buildpack-tor-proxy.git"
}
]
}