Flexible and out of the box authentication solution for Phoenix ~ Devise like
Keeper is under heavy development and is still on it's first RC, you are more then welcome to contribute, but I'd definitely not recommend using it right now.
- Add
keeper
to your list of dependencies inmix.exs
:
def deps do
[{:keeper, "~> 0.0.1-rc"}]
end
- Ensure
keeper
is started before your application:
def application do
[applications: [:keeper]]
end
- Run the installer
You can replace `User` by the name of the module you want **Keeper** to create,
or be applied to (if it already exists) followed by it's downcased plural name.
$ mix keeper.install User users