embark/templates/boilerplate/config/storage.js

30 lines
533 B
JavaScript
Raw Normal View History

2018-06-12 16:59:31 +00:00
module.exports = {
default: {
enabled: true,
ipfs_bin: "ipfs",
provider: "ipfs",
available_providers: ["ipfs"],
upload: {
host: "localhost",
port: 5001
},
dappConnection: [
2018-06-18 20:04:05 +00:00
{
provider: "ipfs",
host: "localhost",
port: 5001,
getUrl: "http://localhost:8080/ipfs/"
}
2018-06-12 16:59:31 +00:00
]
},
development: {
enabled: true,
provider: "ipfs",
upload: {
host: "localhost",
port: 5001,
getUrl: "http://localhost:8080/ipfs/"
}
}
2018-06-18 20:04:05 +00:00
};