forked from martindale/toshi
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.json
More file actions
26 lines (26 loc) · 666 Bytes
/
app.json
File metadata and controls
26 lines (26 loc) · 666 Bytes
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
{
"name": "Toshi",
"description": "Bitcoin node using Ruby + PostgreSQL",
"website": "http://toshi.io/",
"repository": "https://github.com/coinbase/toshi",
"logo": "https://raw.githubusercontent.com/coinbase/toshi/master/lib/toshi/web/static/images/toshi_logo_gray.png",
"keywords": [
"bitcoin",
"node",
"ruby"
],
"env": {
"TOSHI_NETWORK": {
"description": "Specifies which network to connect to (one of `bitcoin` or `testnet3`)",
"value": "testnet3"
},
"TOSHI_ENV": "production"
},
"addons": [
"heroku-postgresql",
"redistogo"
],
"scripts": {
"postdeploy": "bundle exec rake db:migrate"
}
}