Consul

Build Status

A simple Elixir HTTP client for Consul

Requirements

Installation

Add Consul as a dependency in your mix.exs file

def application do
  [applications: [:consul]]
end

defp deps do
  [
    {:consul, "~> 0.1.0"},
    {:hackney, github: "benoitc/hackney"},
  ]
end

Then run mix deps.get in your shell to fetch the dependencies.

NOTE: Hackney is currently not hosted on Hex so it must be added explicitly as a github dependency

Authors

Jamie Winsor (jamie@undeadlabs.com)