Skip to content

localvore-today/localvore_sdk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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
```

Releases

No releases published

Packages

No packages published

Languages