We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88866f1 commit d70c986Copy full SHA for d70c986
bin/embark
@@ -142,6 +142,14 @@ program.command('demo').description('create a working dapp with a SimpleStorage
142
console.log('\n\ninit complete');
143
});
144
145
+program.command('meteor_demo').description('create a working meteor dapp with a SimpleStorage contract').action(function() {
146
+ var boilerPath = path.join(__dirname + '/../demo_meteor');
147
+
148
+ var targetDir = "./embark_demo";
149
+ wrench.copyDirSyncRecursive(boilerPath, targetDir);
150
+ console.log('\n\ninit complete');
151
+});
152
153
program.parse(process.argv)
154
155
if (!process.argv.slice(2).length) {
0 commit comments