Packages

Easy to install Auth system with social integration just in 6 steps on Elixir Phoenix

Current section

Files

Jump to
plug_mishka_auth lib mishka_auth application.ex
Raw

lib/mishka_auth/application.ex

defmodule MishkaAuth.Application do
@moduledoc false
use Application
def start(_type, _args) do
children = [
{Redix, name: :redix, password: "#{MishkaAuth.get_config_info(:redix)}"}
]
opts = [strategy: :one_for_one, name: MishkaAuth.Supervisor]
Supervisor.start_link(children, opts)
end
end