**DEPRECATED** grunt plugin for embark 0.x
Go to file
Iuri Matias 2d89bc542f use 0.6.3; tag 0.1.1 2015-07-23 07:18:57 -04:00
tasks remove development server from grunt plugin 2015-07-22 22:34:35 -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 use 0.6.3; tag 0.1.1 2015-07-23 07:18:57 -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"
}