Created
July 8, 2014 17:06
-
-
Save ChrisChares/0b85970e32e5a6707c69 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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