An elixir driver for ArangoDB.
The package can be installed from Hex:
- Add
arangoexto your list of dependencies inmix.exs:
def deps do
[{:arangoex, "~> 0.0.1"}]
end- Configure
arangoexfor your specific environment:
config :arangoex,
host: "http://localhost:8529",
database: "myDatabase",
username: "myUsername",
password: "myPassword"- Ensure
arangoexis started before your application:
def application do
[applications: [:arangoex]]
endYou can run tests with mix test, but you must startup an instance of
arangodb without authentication. Using
the official docker image is
recommended.