The development is on Windows. At work when I have time, I use c9.io. Came home, did a
git pull and work.
There is a sequence of commands to get started, namely:
$ npm install
$ bower install
$ gulp build
$ gulp watch
$ npm start
Tired of waiting run and enter handles. Want to use BAT file to automate, and I believe right now I can't.
Will this file work?
do(
rem install the npm packages
call npm install
)
do(
rem install the bower package
call bower install
)
do(
rem Build project
call gulp build
)
do(
rem Start monitoring file changes
call gulp watch
)
do(
rem start the server application
call node "./server/app.js"
)