EnyoJS Build-for-web scripts

Instructions:

1) Install Node.js (http://nodejs.org/) - you need this to run minify scripts

2) Download the Bootplate zip file here (http://enyojs.com/get-enyo/) or clone from GitHub

3) Add the "for-web" folder to the bootplate files

4) Run the minify script in the "for-web" folder (for-web/minify.bat or for-web/minify.sh). This will make a new folder at "for-web/build" with two sub-folders "for-web/build/enyo" and "for-web/build/lib"

5) Copy the directories in "for-web/build" to the spot on your server where you have your javascript libraries
	For example: /javascript/enyo/<version number>/
	
6) In your web page that uses enyo, first put in a script tag for enyo, then the one for your app's package
	<script type="text/javascript" src="/javascript/enyo/<version number/enyo/enyo.js"></script>
	<script type="text/javascript" src="myApp/package.js"></script>
	
7) If your app uses Layout and Onyx, make sure you include them in your app's package like this:
	enyo.depends(
		'$enyo/enyo.css',
		'$lib/layout',
		'$lib/onyx',
		'source/my-app.js'
	)