mirror of
https://github.com/embarklabs/embark.git
synced 2025-03-01 05:40:44 +00:00
8 lines
211 B
CoffeeScript
8 lines
211 B
CoffeeScript
module.exports = (grunt) ->
|
|
|
|
grunt.registerTask "blockchain", "deploy ethereum node", (env_) =>
|
|
env = env_ || "development"
|
|
Embark = require('embark-framework')
|
|
Embark.Blockchain.startChain(env)
|
|
|