localvore-today / localvore_sdk

SDK Wrapper for API V2

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

LocalvoreSdk

Provides a wrapper around HTTPoison for the Localvore API V2.

Configuration

config :localvore_sdk,
  api_version: "2016-10-28"
  api_key: "...",
  api_url: System.get_env("LVT_ELIXIR_API_URL")

Installation

  1. Add localvore_sdk to your list of dependencies in mix.exs:
```elixir
def deps do
  [
    # ...
    {:localvore_sdk, git: "https://github.com/localvore-today/localvore_sdk"}
  ]
end
```
  1. Ensure localvore_sdk is started before your application:
```elixir
def application do
  [
    applications: [
      # ...
      :localvore_sdk
    ]
  ]
end
```

About

SDK Wrapper for API V2


Languages

Language:Elixir 100.0%