Skip to content

Latest commit

 

History

History
32 lines (19 loc) · 1.2 KB

README.md

File metadata and controls

32 lines (19 loc) · 1.2 KB

Mechanica Boilerplate Build Status

Basic template for building modern web application.

Prerequisites

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:

Usage

Spin up dev environment

$ vagrant up
$ vagrant ssh

and then, on VM

$ cd /vagrant
$ npm install
$ gulp watch

Troubleshooting

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