Arangoex
An elixir driver for ArangoDB.
Installation
The package can be installed from Hex:
-
Add
arangoexto your list of dependencies inmix.exs:
```elixir
def deps do
[{:arangoex, "~> 0.0.1"}]
end
```-
Configure
arangoexfor your specific environment:
```elixir
config :arangoex,
host: "http://localhost:8529",
database: "myDatabase",
username: "myUsername",
password: "myPassword"
```-
Ensure
arangoexis started before your application:
```elixir
def application do
[applications: [:arangoex]]
end
```