Skip to content

austinsmorris/arangoex

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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:
  def deps do
    [{:arangoex, "~> 0.0.1"}]
  end
  1. Configure arangoex for your specific environment:
config :arangoex,
  host: "http://localhost:8529",
  database: "myDatabase",
  username: "myUsername",
  password: "myPassword"
  1. Ensure arangoex is started before your application:
def application do
  [applications: [:arangoex]]
end

Running Tests

You can run tests with mix test, but you must startup an instance of arangodb without authentication. Using the official docker image is recommended.

About

An elixir driver for ArangoDB.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages