Sha256: a9eebb9bfb69f8d8456813be1bf063e5c185a8655948e26259b9ffcd98398be3
Contents?: true
Size: 659 Bytes
Versions: 7
Compression:
Stored size: 659 Bytes
Contents
# Usage (from the repo root): # env FLIPPER_CLOUD_TOKEN=<token> FLIPPER_CLOUD_SYNC_SECRET=<secret> FLIPPER_CLOUD_SYNC_METHOD=webhook bundle exec rackup examples/ui/basic.ru -p 9999 # env FLIPPER_CLOUD_TOKEN=<token> FLIPPER_CLOUD_SYNC_SECRET=<secret> FLIPPER_CLOUD_SYNC_METHOD=webhook bundle exec shotgun examples/ui/basic.ru -p 9999 # http://localhost:9999/ # http://localhost:9999/webhooks require 'pathname' root_path = Pathname(__FILE__).dirname.join('..').expand_path lib_path = root_path.join('lib') $:.unshift(lib_path) require 'flipper/cloud' Flipper.configure do |config| config.default { Flipper::Cloud.new } end run Flipper::Cloud.app
Version data entries
7 entries across 7 versions & 1 rubygems