Xarango
Elixir client library for ArangoDB.
Usage
Export username and password for your db user account:
export ARANGO_USER=root
export ARANGO_PASSWORD=foobar
Run tests
mix test
See tests for usage examples.
Installation
If available in Hex, the package can be installed as:
- Add
xarangoto your list of dependencies inmix.exs:
```elixir
def deps do
[{:xarango, "~> 0.1.0"}]
end
```
- Ensure
xarangois started before your application:
```elixir
def application do
[applications: [:xarango]]
end
```