Add basic auth.
This commit is contained in:
parent
a93f3421a7
commit
e32dbfc9a5
5 changed files with 174 additions and 3 deletions
6
mix.exs
6
mix.exs
|
|
@ -17,7 +17,7 @@ defmodule Pleroma.Mixfile do
|
|||
# Type `mix help compile.app` for more information.
|
||||
def application do
|
||||
[mod: {Pleroma.Application, []},
|
||||
extra_applications: [:logger, :runtime_tools]]
|
||||
extra_applications: [:logger, :runtime_tools, :comeonin]]
|
||||
end
|
||||
|
||||
# Specifies which paths to compile per environment.
|
||||
|
|
@ -33,7 +33,9 @@ defmodule Pleroma.Mixfile do
|
|||
{:phoenix_ecto, "~> 3.2"},
|
||||
{:postgrex, ">= 0.0.0"},
|
||||
{:gettext, "~> 0.11"},
|
||||
{:cowboy, "~> 1.0"}]
|
||||
{:cowboy, "~> 1.0"},
|
||||
{:comeonin, "~> 3.0"},
|
||||
{:mix_test_watch, "~> 0.2", only: :dev}]
|
||||
end
|
||||
|
||||
# Aliases are shortcuts or tasks specific to the current project.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue