Merge branch 'correct-and-improve-http-options' into 'develop'
[akkoma] / mix.exs
1 defmodule Pleroma.Mixfile do
2 use Mix.Project
3
4 def project do
5 [
6 app: :pleroma,
7 version: 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 {:tesla, "~> 1.2"},
60 {:jason, "~> 1.0"},
61 {:mogrify, "~> 0.6.1"},
62 {:ex_aws, "~> 2.0"},
63 {:ex_aws_s3, "~> 2.0"},
64 {:earmark, "~> 1.2"},
65 {:ex_machina, "~> 2.2", only: :test},
66 {:credo, "~> 0.9.3", only: [:dev, :test]},
67 {:mock, "~> 0.3.1", only: :test},
68 {:crypt,
69 git: "https://github.com/msantos/crypt", ref: "1f2b58927ab57e72910191a7ebaeff984382a1d3"},
70 {:cors_plug, "~> 1.5"},
71 {:ex_doc, "> 0.18.3 and < 0.20.0", only: :dev, runtime: false},
72 {:web_push_encryption, "~> 0.2.1"}
73 ]
74 end
75
76 # Aliases are shortcuts or tasks specific to the current project.
77 # For example, to create, migrate and run the seeds file at once:
78 #
79 # $ mix ecto.setup
80 #
81 # See the documentation for `Mix` for more info on aliases.
82 defp aliases do
83 [
84 "ecto.setup": ["ecto.create", "ecto.migrate", "run priv/repo/seeds.exs"],
85 "ecto.reset": ["ecto.drop", "ecto.setup"],
86 test: ["ecto.create --quiet", "ecto.migrate", "test"]
87 ]
88 end
89
90 # Builds a version string made of:
91 # * the application version
92 # * a pre-release if ahead of the tag: the describe string (-count-commithash)
93 # * build info:
94 # * a build name if `PLEROMA_BUILD_NAME` or `:pleroma, :build_name` is defined
95 # * the mix environment if different than prod
96 defp version(version) do
97 {git_tag, git_pre_release} =
98 with {tag, 0} <- System.cmd("git", ["describe", "--tags", "--abbrev=0"]),
99 tag = String.trim(tag),
100 {describe, 0} <- System.cmd("git", ["describe", "--tags", "--abbrev=8"]),
101 describe = String.trim(describe),
102 ahead <- String.replace(describe, tag, "") do
103 {String.replace_prefix(tag, "v", ""), if(ahead != "", do: String.trim(ahead))}
104 else
105 _ -> {nil, nil}
106 end
107
108 if git_tag && version != git_tag do
109 Mix.shell().error(
110 "Application version #{inspect(version)} does not match git tag #{inspect(git_tag)}"
111 )
112 end
113
114 build_name =
115 cond do
116 name = Application.get_env(:pleroma, :build_name) -> name
117 name = System.get_env("PLEROMA_BUILD_NAME") -> name
118 true -> nil
119 end
120
121 env_name = if Mix.env() != :prod, do: to_string(Mix.env())
122
123 build =
124 [build_name, env_name]
125 |> Enum.filter(fn string -> string && string != "" end)
126 |> Enum.join("-")
127 |> (fn
128 "" -> nil
129 string -> "+" <> string
130 end).()
131
132 [version, git_pre_release, build]
133 |> Enum.filter(fn string -> string && string != "" end)
134 |> Enum.join()
135 end
136 end