Simple interactive pie chart visualisation of fire outbreaks in Ghana
# angular-seed — the seed for AngularJS apps
This project is an application skeleton for a typical AngularJS web app.
You can use it to quickly bootstrap your angular webapp projects and dev environment for these
projects.
The seed contains a sample AngularJS application and is preconfigured to install the Angular
framework and a bunch of development and testing tools for instant web development gratification.
The seed app doesn't do much, just shows how to wire two controllers and views together.
## Getting Started
To get you started you can simply clone the angular-seed repository and install the dependencies:
### Prerequisites
You need git to clone the angular-seed repository. You can get git from
git-scm.com.
We also use a number of node.js tools to initialize and test angular-seed. You must have node.js and
its package manager (npm) installed. You can get them from
nodejs.org.
### Clone angular-seed
Clone the angular-seed repository using [git][git]:
```
git clone
github.com
cd angular-seed
```
If you just want to start a new project without the angular-seed commit history then you can do:
```bash
git clone --depth=1
github.com
```
The `depth=1` tells git to only pull down one commit worth of historical data.
### Install Dependencies
We have two kinds of dependencies in this project: tools and angular framework code. The tools help
us manage and test the application.
* We get the tools we depend upon via `npm`, the [node package manager][npm].
* We get the angular code via `bower`, a [client-side code package manager][bower].
We have preconfigured `npm` to automatically run `bower` so we can simply do:
```
npm install
```
Behind the scenes this will also call `bower install`. You should find that you have two new
folders in your project.
* `node_modules` - contains the npm packages for the tools we need
* `app/bower_components` - contains the angular frame …