akkoma/mix.exs

61 lines
1.8 KiB
Elixir
Raw Normal View History

2017-03-17 16:09:58 +00:00
defmodule Pleroma.Mixfile do
use Mix.Project
def project do
[app: :pleroma,
version: "0.9.0",
2017-03-17 16:09:58 +00:00
elixir: "~> 1.4",
elixirc_paths: elixirc_paths(Mix.env),
compilers: [:phoenix, :gettext] ++ Mix.compilers,
start_permanent: Mix.env == :prod,
aliases: aliases(),
deps: deps()]
end
# Configuration for the OTP application.
#
# Type `mix help compile.app` for more information.
def application do
[mod: {Pleroma.Application, []},
2017-03-20 16:45:47 +00:00
extra_applications: [:logger, :runtime_tools, :comeonin]]
2017-03-17 16:09:58 +00:00
end
# Specifies which paths to compile per environment.
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
# Specifies your project dependencies.
#
# Type `mix help deps` for examples and options.
defp deps do
2017-09-06 17:05:35 +00:00
[{:phoenix, "~> 1.3.0"},
2017-03-17 16:09:58 +00:00
{:phoenix_pubsub, "~> 1.0"},
{:phoenix_ecto, "~> 3.2"},
{:postgrex, ">= 0.0.0"},
{:gettext, "~> 0.11"},
2017-03-24 00:16:28 +00:00
{:cowboy, "~> 1.0", override: true},
2017-03-20 16:45:47 +00:00
{:comeonin, "~> 3.0"},
2017-03-24 00:16:28 +00:00
{:trailing_format_plug, "~> 0.0.5" },
2017-05-18 15:18:33 +00:00
{:html_sanitize_ex, "~> 1.3.0-rc1"},
2017-09-06 17:05:35 +00:00
{:phoenix_html, "~> 2.10"},
2017-04-12 17:34:58 +00:00
{:calendar, "~> 0.16.1"},
{:cachex, "~> 2.1"},
{:httpoison, "~> 0.11.2"},
{:jason, "~> 1.0"},
2017-04-13 13:49:24 +00:00
{:ex_machina, "~> 2.0", only: :test},
{:credo, "~> 0.7", only: [:dev, :test]}]
2017-03-17 16:09:58 +00:00
end
# Aliases are shortcuts or tasks specific to the current project.
# For example, to create, migrate and run the seeds file at once:
#
# $ mix ecto.setup
#
# See the documentation for `Mix` for more info on aliases.
defp aliases do
["ecto.setup": ["ecto.create", "ecto.migrate", "run priv/repo/seeds.exs"],
"ecto.reset": ["ecto.drop", "ecto.setup"],
"test": ["ecto.create --quiet", "ecto.migrate", "test"]]
end
end