embark-area-51/tasks/blockchain.coffee

8 lines
211 B
CoffeeScript
Raw Normal View History

2015-05-24 08:47:06 -04:00
module.exports = (grunt) ->
grunt.registerTask "blockchain", "deploy ethereum node", (env_) =>
env = env_ || "development"
Embark = require('embark-framework')
Embark.Blockchain.startChain(env)
2015-05-24 08:47:06 -04:00