An open API service indexing awesome lists of open source software.

https://github.com/queer/violet

A simple, pure-Elixir etcd client.
https://github.com/queer/violet

Last synced: 12 months ago
JSON representation

A simple, pure-Elixir etcd client.

Awesome Lists containing this project

README

          

# violet

violet is a simple etcd client written in Elixir, only used for my personal
projects.

## Installation

Add this to your mix.exs:

```elixir
def deps do
[
{:violet, github: "queer/violet"}
]
end
```

## Configuration

Put something like this in your config.exs:

```elixir
config :violet, :etcd,
:url, "http://localhost:2379"
```