Skip to content
This repository has been archived by the owner on Feb 6, 2020. It is now read-only.

Latest commit

 

History

History
12 lines (12 loc) · 722 Bytes

README.md

File metadata and controls

12 lines (12 loc) · 722 Bytes

bootstrap-grunt

This is a sample setup for creating simple bootstrap projects with Grunt.js. #Usage#

  • Install nodejs>=0.10 and npm
  • Install grunt-cli globally sudo npm install -g grunt-cli
  • clone the repo, cd to the directory and run npm install. This will install the grunt modules required.
  • make changes to assets/less/* and assets/js/* annd run grunt to compile.
  • Edit Gruntfile.js to comment out any js file you don't want to include in your project.
  • Edit assets/less/bootstrap/bootstrap.less to comment out any less file you don't want.
  • Write your own less in app.less and your own js in _main.js.
  • If you want to compile less and js in realtime, run grunt watch in the terminal.