A Plug A/B test framework aiming to be fast, reliable and scalable. This is a work in progress project and design changes are expected.
If available in Hex, the package can be installed as:
- Add
abex
to your list of dependencies inmix.exs
:
```elixir
def deps do
[{:abex, "~> 0.1.0"}]
end
```
- Ensure
abex
is started before your application:
```elixir
def application do
[applications: [:abex]]
end
```