# RethinkDB.Ecto
[](https://travis-ci.org/almightycouch/rethinkdb_ecto)
[](https://hex.pm/packages/rethinkdb_ecto)
[](http://hexdocs.pm/rethinkdb_ecto)
[](https://raw.githubusercontent.com/almightycouch/rethinkdb_ecto/master/LICENSE)
[](http://github.com/almightycouch/rethinkdb_ecto/issues)
RethinkDB adapter for Ecto.
## Installation
Add `:rethinkdb_ecto` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[{:rethinkdb_ecto, "~> 0.1"}]
end
```
Ensure `:rethinkdb_ecto` is started before your application:
```elixir
def application do
[applications: [:rethinkdb_ecto]]
end
```
Finally, in the repository configuration, you will need to specific the `:adapter`:
```elixir
config :my_app, Repo,
adapter: RethinkDB.Ecto,
...
```