https://github.com/kioqq/exconsul
Elixir client for Consul's HTTP API
https://github.com/kioqq/exconsul
consul elixir
Last synced: about 1 year ago
JSON representation
Elixir client for Consul's HTTP API
- Host: GitHub
- URL: https://github.com/kioqq/exconsul
- Owner: kioqq
- License: mit
- Created: 2018-07-10T16:16:30.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-07-23T16:50:11.000Z (over 7 years ago)
- Last Synced: 2025-03-11T14:14:55.515Z (about 1 year ago)
- Topics: consul, elixir
- Language: Elixir
- Homepage:
- Size: 16.6 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Consul
An Elixir client for Consul's HTTP API
# Forked!
This repository is fork https://github.com/undeadlabs/consul-ex
Thx Jamie Winsor!
## Requirements
* Elixir 1.6 or newer
## Installation
Add Consul as a dependency in your `mix.exs` file
```elixir
def application do
[applications: [:exconsul]]
end
defp deps do
[
{:exconsul, "~> 1.0"}
]
end
```
Add in config
```elixir
config :exconsul,
host: "123.123.123.123", # your consul host
port: 8500
```
Then run `mix deps.get` in your shell to fetch the dependencies.
## Docs
Run `mix docs` and open `doc/index.html` to view the documentation.
## Authors
Jamie Winsor ()