# Feature-flag-manager

Ember cli addon that add the ability to create a feature based application.

## Conventions
1. all features are known at start, therefore,
2. you cannot add features at runtime,
3. you can however turn them on and off.,
4. each feature has 3 params,
```
{
  name: string,
  flag: boolean and,
  settings: { options: string array,
              selected: string}
}
```

## Installation

* `git clone` this repository
* `npm install`
* `bower install`

## Running

* `ember server`
* Visit your app at http://localhost:4200.

## Running Tests

* `ember test`
* `ember test --server`

## Building

* `ember build`

For more information on using ember-cli, visit [http://www.ember-cli.com/](http://www.ember-cli.com/).
