This repository has been archived by the owner on Feb 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Developing Bandiera
Darren Oakley edited this page Oct 18, 2021
·
1 revision
To work with Bandiera, you need to be comfortable working in Ruby, but the code itself is very very simple...
- Fork this repo.
- Run
bundle install
- Create a
config/database.yml
file with your database connection details (useconfig/database.yml.sample
as a guide). - Run
bundle exec rake db:create db:migrate
. - Run
RACK_ENV=test bundle exec rake db:create db:migrate
. - Run
shotgun -p 5000
You'll now see the web interface sitting on http://localhost:5000, and the API at http://localhost:5000/api.
- Home
- How Feature Flags Work
- Dos and Donts of Feature Flagging
- Client Libraries
- Developing Bandiera
- API Documentation
- API v2
- API v1 (deprecated)