Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/orbit-apps/elixir-launchdarklyapi
- Owner: orbit-apps
- Created: 2019-05-03T20:46:55.000Z (almost 6 years ago)
- Default Branch: main
- Last Pushed: 2024-10-23T19:30:28.000Z (4 months ago)
- Last Synced: 2024-10-24T06:12:18.631Z (4 months ago)
- Topics: library
- Language: Elixir
- Size: 170 KB
- Stars: 2
- Watchers: 9
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Codeowners: .github/CODEOWNERS
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"
```