A ui for managing your toggles.
Read our blog post series about this repository at:
- http://labs.qandidate.com/blog/2014/08/18/a-new-feature-toggling-library-for-php/
- http://labs.qandidate.com/blog/2014/08/19/open-sourcing-our-feature-toggle-api-and-ui/
First, install the dependencies:
bower install
To use the UI, you will need to create your config.js to configure the API endpoint.
# From project root
$ cp app/js/config.js.dist app/js/config.js
# Configure your endpoint URL
$ vim app/js/config.js
You are now ready to serve the UI with your favorite webserver.
If you want to run the karma tests, you'll need to install the dependencies:
$ npm install
You can now run the karma tests:
$ scripts/test.sh --single-run
And the e2e tests:
$ scripts/web-server.js
$ scripts/e2e-test.sh --single-run
MIT, see LICENSE.