#Design Boilerplate
This repository contains a set of configurations for building a website (Frontend at least).
This is what i use on a daily basis. I usually start by planning what i need and add modules and functionalities as i need.
##Contents As the main piece of engineering here, we have Gulp.js for running common tasks. The following gulp modules are bundled by default:
- gulp-rename
- gulp-plumber
- gulp-minify-css
- gulp-sass
- gulp-autoprefixer
- gulp-sourcemaps
- gulp-uglify
- BrowserSync
- run-sequence
And for the templating modules:
As well as the latest jQuery version.
##Installation
First of all, simply run:
npm install
then:
gulp build
After this, you should have Font-Awesome, Bootstrap and jQuery installed in your assets directory.
Finally, for livereloading just run:
gulp serve
And access http://localhost:3000 in your web browser. (If you need more info or configurations go to the BrowserSync doc page)