First, install Node.js . We won't actually be running node, but we do want its package manager, npm. Note: This is only a build dependency and is not required for production servers.
All commands below are from your terminal or command line
- Clone the project.
git clone https://github.com/piyushpalod/HealthClues.git
- Install the dependencies.
npm install
- Build and run.
gulp
* This requires Gulp to be installed globally withnpm install gulp -g
or you can run gulp locally withnode .\node_modules\bin\gulp.js
This will build the AngularJS app and open it in your default browser.
File organization is based on the LIFT principle.
- Locate our code easily.
- Identify code at a glance.
- Flat structure kept as long as possible.
- Try to stay DRY