This is HTML5 application, built with Brunch.
- Install Brunch:
npm install -g brunch
. - Install Brunch plugins:
npm install
. - Install Bower components:
bower install
- Watch the project with continuous rebuild by
brunch watch --server
. This will also launch HTTP server. - Or build the minified project with
brunch build --optimize
.
Open the public/
dir to see the result.
- Write your code in
app
dir. - Put static files that should be copied (index.html etc) to
app/assets
. - Manage dependencies with Bower or simply put
third-party styles & scripts in
vendor
dir.