Home

Awesome

"SCAB"

Brunch skeleton with SASS, CoffeeScript, Angular and Bootstrap.

What do we have here?

and some additions:

What you need before you start:

Getting started

Overview

/development/			--> Development directory. Put all your code/assets there.
	/assets/				--> Place for static assets
		/images/
		index.html
	/scripts/			--> put CoffeScript files there
		.empty
	/styles/				--> put SASS files there
		appName.sass
		
/build/					--> Preview directory. After you run `brunch w -s` compiled fiels will go there.
	/scripts/			--> compiled JS
		app.js
		app.js.map
		vendor.js
		vendor.js.map
	/styles/				--> compiled CSS
		app.css
		app.css.map
		vendor.css
		vendor.css.map
	/images/				--> images
	index.html
		
/release/				--> Run `brunch build -P` to compile stuff for production release. 
	/scripts/			--> Minified JavaScript go there
		app.js
		vendor.js
	/styles/				--> Minified CSS go there
		app.css
		vendor.css
	/images/
	index.html