diff options
author | Alexander Strizhakov <alex.strizhakov@gmail.com> | 2020-01-25 18:42:04 +0300 |
---|---|---|
committer | Alexander Strizhakov <alex.strizhakov@gmail.com> | 2020-01-25 18:42:04 +0300 |
commit | e93cc561cd42ff4ca7f3c95cdbf8dfa7fb9f4a74 (patch) | |
tree | e73bc75af91bd2cc782045fef1cee8916a181e88 /mix.exs | |
parent | 28f822877fd9a524e442d13a3c0029ae797c875d (diff) | |
download | pleroma-e93cc561cd42ff4ca7f3c95cdbf8dfa7fb9f4a74.tar.gz pleroma-e93cc561cd42ff4ca7f3c95cdbf8dfa7fb9f4a74.zip |
restarting pleroma from outside application
Diffstat (limited to 'mix.exs')
-rw-r--r-- | mix.exs | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -8,7 +8,7 @@ defmodule Pleroma.Mixfile do elixir: "~> 1.8", elixirc_paths: elixirc_paths(Mix.env()), compilers: [:phoenix, :gettext] ++ Mix.compilers(), - elixirc_options: [warnings_as_errors: true], + elixirc_options: [warnings_as_errors: warnings_as_errors(Mix.env())], xref: [exclude: [:eldap]], start_permanent: Mix.env() == :prod, aliases: aliases(), @@ -73,6 +73,11 @@ defmodule Pleroma.Mixfile do defp elixirc_paths(:test), do: ["lib", "test/support"] defp elixirc_paths(_), do: ["lib"] + defp warnings_as_errors(:prod), do: false + # Uncomment this if you need testing configurable_from_database logic + # defp warnings_as_errors(:dev), do: false + defp warnings_as_errors(_), do: true + # Specifies OAuth dependencies. defp oauth_deps do oauth_strategy_packages = @@ -166,7 +171,8 @@ defmodule Pleroma.Mixfile do {:captcha, git: "https://git.pleroma.social/pleroma/elixir-libraries/elixir-captcha.git", ref: "e0f16822d578866e186a0974d65ad58cddc1e2ab"}, - {:mox, "~> 0.5", only: :test} + {:mox, "~> 0.5", only: :test}, + {:restarter, git: "https://git.pleroma.social/alex.s/restarter"} ] ++ oauth_deps() end |