-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathapp.json
31 lines (31 loc) · 907 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
{
"name": "Voltage AutoUnlock",
"description": "Service to receive the webhook to then unlock a Voltage LND node",
"repository": "https://github.com/w3irdrobot/voltageautounlock",
"keywords": [
"golang",
"bitcoin",
"lightning",
"voltage"
],
"buildpacks": [
{
"url": "heroku/go"
}
],
"env": {
"ADDRESS": {
"description": "The host and port to run the service on",
"value": ":8080"
},
"VOLTAGE_NODE_API": {
"description": "The URL of the node's API that will be attempting to be unlocked with this service"
},
"VOLTAGE_WEBHOOK_SECRET": {
"description": "Secret used to validate the request"
},
"VOLTAGE_WALLET_PASSWORD": {
"description": "The wallet password for the node to unlock"
}
}
}