**DEPRECATED** grunt plugin for embark 0.x
Go to file
Iuri Matias e1a835f275 update to 0.4.2 2015-09-14 21:36:53 -04:00
tasks use blockchain config to get chain file 2015-09-05 07:25:38 -04:00
Gruntfile.coffee add gruntfile 2015-07-22 18:39:56 -04:00
LICENSE Initial commit 2015-07-14 20:02:02 -04:00
README.md Updated README.md 2015-07-14 20:34:51 -04:00
package.json update to 0.4.2 2015-09-14 21:36:53 -04:00

README.md

grunt-embark

grunt plugin for Embark - DApp Framework for Ethereum

Getting Started

From the same directory as your project's Gruntfile and package.json, install this plugin with the following command:

$ npm install embark-framework --save-dev
$ npm install grunt-embark --save-dev

Once that's done, add this line to your project's Gruntfile:

grunt.loadNpmTasks('grunt-embark');

Config

Inside your Gruntfile.js file, add a section named deploy, containing the fields contracts and dest.

Here's an example that deploys contracts and generates the js client file

deploy: {
  contracts: ["app/contracts/**/*.sol"],
  dest: "embark_client.js"
}