topic-democracy/config/storage.js

38 lines
592 B
JavaScript
Raw Normal View History

module.exports = {
default: {
enabled: true,
ipfs_bin: "ipfs",
available_providers: ["ipfs"],
upload: {
2019-01-12 13:42:31 +00:00
provider: "ipfs",
host: "localhost",
port: 5001
},
dappConnection: [
{
2019-01-12 13:42:31 +00:00
provider:"ipfs",
host: "localhost",
port: 5001,
getUrl: "http://localhost:8080/ipfs/"
}
]
},
development: {
enabled: true,
upload: {
2019-01-12 13:42:31 +00:00
provider: "ipfs",
host: "localhost",
port: 5001,
getUrl: "http://localhost:8080/ipfs/"
}
2019-01-12 13:42:31 +00:00
},
testnet: {
},
livenet: {
},
2019-03-28 23:16:54 +00:00
rinkeby: {
}
};