Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/orbit-apps/elixir-launchdarklyapi

Launch Darkly API library
https://github.com/orbit-apps/elixir-launchdarklyapi

library

Last synced: 2 months ago
JSON representation

Launch Darkly API library

Awesome Lists containing this project

README

        

# LaunchDarklyAPI

Launch Darkly API library.

WARNING: Not complete.

## Installation

```elixir
def deps do
[
{:launch_darkly_api, github: "orbit-apps/elixir-launchdarklyapi", tag: "v0.3.0"}
]
end
```

## Configuration

Add the following to your `config/prod.exs`

```elixir
config :launch_darkly_api, :authorization,
access_token: System.get_env("LAUNCH_DARKLY_API_KEY")

config :launch_darkly_api, :environment, "production"
```