Skip to content

Flexible and Simple authentication solution for Phoenix

Notifications You must be signed in to change notification settings

joaomdmoura/keeper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

3541dc4 · Oct 15, 2017

History

44 Commits
Jan 16, 2017
Oct 15, 2017
Jan 11, 2017
Oct 15, 2017
Dec 24, 2016
Nov 26, 2016
Jan 16, 2017
Nov 2, 2016
Mar 22, 2017
Oct 15, 2017
Oct 15, 2017

Repository files navigation

Keeper Logo

Flexible and out of the box authentication solution for Phoenix ~ Devise like

Build Status Ebert Inline docs Deps Status

Disclaimer

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.

Installation

  1. Add keeper to your list of dependencies in mix.exs:
def deps do
  [{:keeper, "~> 0.0.1-rc"}]
end
  1. Ensure keeper is started before your application:
def application do
  [applications: [:keeper]]
end
  1. 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