Skip to content

Instantly share code, notes, and snippets.

@ChrisChares
Created July 8, 2014 17:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ChrisChares/0b85970e32e5a6707c69 to your computer and use it in GitHub Desktop.
Save ChrisChares/0b85970e32e5a6707c69 to your computer and use it in GitHub Desktop.
shell: {
vars: {
command: 'source etc/vars'
},
dockerosx: {
command: 'docker-osx start'
},
fig: {
command: 'fig up -d'
},
sleep: {
command: 'sleep 3'
}
},
concurrent: {
meta: {
tasks: [
'nodemon:dev',
'watch:api',
'watch:admin_js',
'watch:admin_html',
'watch:admin_less',
'watch:admin_bower',
'watch:livereload',
'watch:admin_index'
],
options: {
logConcurrentOutput: true
}
},
grunt.registerTask('start', [
'shell:vars',
'shell:dockerosx',
'shell:fig',
'shell:sleep',
'build-admin',
'connect:admin',
'concurrent:meta'
]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment