-
Notifications
You must be signed in to change notification settings - Fork 2
Development
timkendall edited this page Oct 1, 2014
·
2 revisions
This is an Angular.js app and as such we rely heavily on the modular style of code it encourages. If you are unfamiliar with how an Angular app is organized familiarize yourself with one of the many online tutorials - try this one.
- Follow Angular.js best practices
- When adding a new feature, create a new branch in the format feat/myfeature
- Branches should be created with descriptive prefixes such as feat/, fix/, etc.
- Install dependencies with
bower install - Install node modules for development with
npm install - Start up the local app instance with
gulp watchThis will automatically reload the app and recompile SASS styles when changes are made.