ded414da9fe6640a16132aefa122b06956004150
[akkoma] / mix.exs
1 defmodule Pleroma.Mixfile do
2 use Mix.Project
3
4 def project do
5 [
6 app: :pleroma,
7 version: "0.9.0",
8 elixir: "~> 1.4",
9 elixirc_paths: elixirc_paths(Mix.env()),
10 compilers: [:phoenix, :gettext] ++ Mix.compilers(),
11 start_permanent: Mix.env() == :prod,
12 aliases: aliases(),
13 deps: deps(),
14
15 # Docs
16 name: "Pleroma",
17 source_url: "https://git.pleroma.social/pleroma/pleroma",
18 source_url_pattern:
19 "https://git.pleroma.social/pleroma/pleroma/blob/develop/%{path}#L%{line}",
20 homepage_url: "https://pleroma.social/",
21 docs: [
22 logo: "priv/static/static/logo.png",
23 extras: ["README.md", "config/config.md"],
24 main: "readme"
25 ]
26 ]
27 end
28
29 # Configuration for the OTP application.
30 #
31 # Type `mix help compile.app` for more information.
32 def application do
33 [mod: {Pleroma.Application, []}, extra_applications: [:logger, :runtime_tools, :comeonin]]
34 end
35
36 # Specifies which paths to compile per environment.
37 defp elixirc_paths(:test), do: ["lib", "test/support"]
38 defp elixirc_paths(_), do: ["lib"]
39
40 # Specifies your project dependencies.
41 #
42 # Type `mix help deps` for examples and options.
43 defp deps do
44 [
45 {:phoenix, "~> 1.3.3"},
46 {:phoenix_pubsub, "~> 1.0.2"},
47 {:phoenix_ecto, "~> 3.3"},
48 {:postgrex, ">= 0.13.5"},
49 {:gettext, "~> 0.15"},
50 {:cowboy, "~> 1.1.2", override: true},
51 {:comeonin, "~> 4.1.1"},
52 {:pbkdf2_elixir, "~> 0.12.3"},
53 {:trailing_format_plug, "~> 0.0.7"},
54 {:html_sanitize_ex, "~> 1.3.0"},
55 {:phoenix_html, "~> 2.10"},
56 {:calendar, "~> 0.17.4"},
57 {:cachex, "~> 3.0.2"},
58 {:httpoison, "~> 1.2.0"},
59 {:jason, "~> 1.0"},
60 {:mogrify, "~> 0.6.1"},
61 {:ex_aws, "~> 2.0"},
62 {:ex_aws_s3, "~> 2.0"},
63 {:earmark, "~> 1.2"},
64 {:ex_machina, "~> 2.2", only: :test},
65 {:credo, "~> 0.9.3", only: [:dev, :test]},
66 {:mock, "~> 0.3.1", only: :test},
67 {:crypt,
68 git: "https://github.com/msantos/crypt", ref: "1f2b58927ab57e72910191a7ebaeff984382a1d3"},
69 {:cors_plug, "~> 1.5"},
70 {:ex_doc, "> 0.18.3 and < 0.20.0", only: :dev, runtime: false}
71 ]
72 end
73
74 # Aliases are shortcuts or tasks specific to the current project.
75 # For example, to create, migrate and run the seeds file at once:
76 #
77 # $ mix ecto.setup
78 #
79 # See the documentation for `Mix` for more info on aliases.
80 defp aliases do
81 [
82 "ecto.setup": ["ecto.create", "ecto.migrate", "run priv/repo/seeds.exs"],
83 "ecto.reset": ["ecto.drop", "ecto.setup"],
84 test: ["ecto.create --quiet", "ecto.migrate", "test"]
85 ]
86 end
87 end