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.
- Host: GitHub
- URL: https://github.com/queer/violet
- Owner: queer
- Created: 2017-10-23T08:19:40.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2019-04-07T07:11:11.000Z (about 7 years ago)
- Last Synced: 2025-03-10T14:55:43.528Z (over 1 year ago)
- Language: Elixir
- Size: 12.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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"
```