We've built a simple console script that demonstrates how LaunchDarkly's OpenFeature provider works.
- Set the environment variable
LAUNCHDARKLY_SDK_KEYto your LaunchDarkly SDK key. If there is an existing boolean feature flag in your LaunchDarkly project that you want to evaluate, setLAUNCHDARKLY_FLAG_KEYto the flag key; otherwise, a boolean flag ofsample-featurewill be assumed.export LAUNCHDARKLY_SDK_KEY="1234567890abcdef" export LAUNCHDARKLY_FLAG_KEY="my-boolean-flag"
- If you have not installed the
bundlertool, rungem install bundleron the command line. - On the command line, run
bundle install - Run
bundle exec ruby main.rb
You should see the message "The <flag key> feature flag evaluates to <true/false>".