2. Run gulp default task
* gulp
-### That's it
-Gulp will continue to watch the js files and concat/uglify them into one file
-js/regApp.js
+## That's it
+Gulp will continue to watch the js files and concat/uglify them into two files
+js/adminRegApp.js
+js/frontRegApp.js
+
+## js files
+The backbone.js app is setup into collections, models and views. Each of these have admin and front folders.
+
+* collections
+** admin
+** front
+
+* models
+** admin
+** front
+
+* views
+** admin
+** front
+
+## Front end
+Globals
+var regEvent = '';
+var cart = '';
+var loginAccount = '';.
+var app = {
+ Models: { Front: {}, Admin: {} },
+ Collections: { Front: {}, Admin: {} },
+ Views: { Front: {}, Admin: {} },
+}
+
+The models collections or views then get setup under app.
+ app.Views.Front.App = Backbone.View.extend