1.0.1 • Published 10 years ago

brunch-scab v1.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
10 years ago

"SCAB"

Brunch skeleton with SASS, CoffeeScript, Angular and Bootstrap

What we have here?

and some additions:

What you need before you start

  • Node.js: brew install node on OS X
  • Brunch: npm install -g brunch
  • Bower: npm install -g bower

Getting started

  • brunch new https://bitbucket.org/jakubburkiewicz/brunch-scab or brunch new gh:jakubburkiewicz/brunch-scabto clone repo
  • if packages installing not beggins run npm install and bower install
  • brunch w -s to start Brunch Watch and local server (on :3333) or...
  • brunch w to just start Brunch Watch
  • brunch build -P when you done your work and want to prepare production release

Overview

/development/			--> Development directory. Here your write your code.
	/assets/				--> Static assets place
		/images/
		index.html
	/scripts/			--> CoffeeScript files place
		.empty
	/styles/				--> SASS files place
		appName.sass
		
/build/					--> Preview directory. Will be build after `brunch w -s` command run. You have nothing to do here.
	/scripts/			--> JavaScript files place
		app.js
		app.js.map
		vendor.js
		vendor.js.map
	/styles/				--> CSS files place
		app.css
		app.css.map
		vendor.css
		vendor.css.map
	/images/				--> Images place
	index.html
		
/release/				--> Builded with `brunch build -P` command. Contains production release files.
	/scripts/			--> Minified JavaScript files place
		app.js
		vendor.js
	/styles/				--> Minified CSS files place
		app.css
		vendor.css
	/images/
	index.html