Embark 0.3.0
New to Embark?
If you are new to Embark, see the documentation for a full guide
To Update to 0.3.0
npm update -g embark-framework
In this release
IPFS support
It is now possible to easily deploy a dapp to IPFS. You'll need to install IPFS first and run ipfs daemon
. Afterwards simply run embark ipfs <environment>
to deploy it, for e.g embark ipfs staging
Embark will build & deploy the app to IPFS and tell you which URLs the dapp is available.
config updates
It's now possible to specify the gas price on config/blockchain.yml with the gas_price field. By default this field is 10 szabo. Future versions should support configuring gas costs per contract.
Update guide
See "embark demo" for differences. It's best to just start "embark new", in future versions there will be an "embark update" option. However, at the moment if you need to update an existing app without starting over, then the following should work:
in package.json for the depedencies
- update to embark 0.3.0
followed by npm install