-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathapp.json
28 lines (28 loc) · 830 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
{
"name": "BTCTipServer",
"description": "Another Bitcoin / Liquid payment service, based on bdk and electrum.",
"repository": "https://github.com/lvaccaro/btctipserver",
"keywords": ["bitcoin", "rust", "payment", "service", "liquid"],
"success_url": "/",
"buildpacks": [
{
"url": "https://github.com/emk/heroku-buildpack-rust.git"
}
],
"env": {
"NETWORK": {
"description": "Bitcoin network: bitcoin or testnet",
"value": "testnet",
"required": true
},
"DESCRIPTOR": {
"description": "Wallet output descriptor, keys must be valid for the NETWORK",
"required": true
},
"SERVER_URL": {
"description": "Electrum server URL, must be valid for the NETWORK",
"value": "ssl://electrum.blockstream.info:60002",
"required": true
}
}
}