This repository was archived by the owner on Jun 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
Running a Server
romulodl edited this page Feb 28, 2014
·
2 revisions
The Bandiera server is written in Ruby, so you're going to need to be able to run a Ruby application within your organisation.
- Clone this repo.
- Run
bundle install --without development test. - Create a
config/database.ymlfile with your database connection details (useconfig/database.yml.sampleas a guide). - Run
RACK_ENV=production bundle exec rake db:create db:migrate. - Run
bundle exec rackup -p 5000
You'll now see the web interface sitting on http://localhost:5000, and the API at http://localhost:5000/api. Obviously in production, you'll want to run it via your favourite rack server (i.e. Unicorn, Puma, Thin or Passenger).
- Home
- How Feature Flags Work
- Do's & Dont's of Feature Flagging
- Client Libraries
- Running a Server
- Developing Bandiera
- API Documentation
- API v2
- API v1 (deprecated)