embark/test_apps/test_app/config/storage.json

26 lines
511 B
JSON
Raw Normal View History

{
"default": {
"enabled": true,
"available_providers": ["ipfs"],
"ipfs_bin": "ipfs",
"provider": "ipfs",
"host": "localhost",
"port": 5001
},
"development": {
"enabled": true,
"provider": "ipfs",
"host": "localhost",
2017-07-23 12:15:40 +00:00
"port": 5001,
"getUrl": "http://localhost:8080/ipfs/"
},
"livenet": {
"enabled": true,
"provider": "ipfs",
"host": "ipfs.infura.io",
"protocol": "https",
"port": false,
"getUrl": "https://ipfs.infura.io/ipfs/"
}
}