summaryrefslogtreecommitdiff
path: root/mix.exs
diff options
context:
space:
mode:
authorRoger Braun <roger@rogerbraun.net>2017-03-20 17:45:47 +0100
committerRoger Braun <roger@rogerbraun.net>2017-03-20 17:56:45 +0100
commite32dbfc9a5477830dba7bf3e99621161e4454a29 (patch)
tree0179d3b453d98b30facfff72f857da2fec999f44 /mix.exs
parenta93f3421a704d6728a856d5d82cdbf9c43f3f897 (diff)
downloadpleroma-e32dbfc9a5477830dba7bf3e99621161e4454a29.tar.gz
pleroma-e32dbfc9a5477830dba7bf3e99621161e4454a29.zip
Add basic auth.
Diffstat (limited to 'mix.exs')
-rw-r--r--mix.exs6
1 files changed, 4 insertions, 2 deletions
diff --git a/mix.exs b/mix.exs
index f38ce95af..ce5ef720e 100644
--- a/mix.exs
+++ b/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.