Basic template for building modern web application.
While I tried to make it as much automatic as possible, several things need to be in place before we'll be able to proceed:
Spin up dev environment
$ vagrant up
$ vagrant ssh
and then, on VM
$ cd /vagrant
$ npm install
$ gulp watch
On Windows host, you may (and likely will) experience problems with npm
that are related to Maximum Path Length Limitations of Windows API. To work around that issue you would need to enable symbolic link evaluations by executing the command in admin command prompt on the windows host (details).
> fsutil behavior set SymlinkEvaluation L2L:1 R2R:1 L2R:1 R2L:1