Arangoex

Build Status

An elixir driver for ArangoDB.

Installation

The package can be installed from Hex:

  1. Add arangoex to your list of dependencies in mix.exs:
```elixir
def deps do
  [{:arangoex, "~> 0.0.1"}]
end
```
  1. Ensure arangoex is started before your application:
```elixir
def application do
  [applications: [:arangoex]]
end
```