Merge branch '210_twitter_api_uploads_alt_text' 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 ]
73 end
74
75 # Aliases are shortcuts or tasks specific to the current project.
76 # For example, to create, migrate and run the seeds file at once:
77 #
78 # $ mix ecto.setup
79 #
80 # See the documentation for `Mix` for more info on aliases.
81 defp aliases do
82 [
83 "ecto.setup": ["ecto.create", "ecto.migrate", "run priv/repo/seeds.exs"],
84 "ecto.reset": ["ecto.drop", "ecto.setup"],
85 test: ["ecto.create --quiet", "ecto.migrate", "test"]
86 ]
87 end
88
89 # Builds a version string made of:
90 # * the application version
91 # * a pre-release if ahead of the tag: the describe string (-count-commithash)
92 # * build info:
93 # * a build name if `PLEROMA_BUILD_NAME` or `:pleroma, :build_name` is defined
94 # * the mix environment if different than prod
95 defp version(version) do
96 {git_tag, git_pre_release} =
97 with {tag, 0} <- System.cmd("git", ["describe", "--tags", "--abbrev=0"]),
98 tag = String.trim(tag),
99 {describe, 0} <- System.cmd("git", ["describe", "--tags", "--abbrev=8"]),
100 describe = String.trim(describe),
101 ahead <- String.replace(describe, tag, "") do
102 {String.replace_prefix(tag, "v", ""), if(ahead != "", do: String.trim(ahead))}
103 else
104 _ -> {nil, nil}
105 end
106
107 if git_tag && version != git_tag do
108 Mix.shell().error(
109 "Application version #{inspect(version)} does not match git tag #{inspect(git_tag)}"
110 )
111 end
112
113 build_name =
114 cond do
115 name = Application.get_env(:pleroma, :build_name) -> name
116 name = System.get_env("PLEROMA_BUILD_NAME") -> name
117 true -> nil
118 end
119
120 env_name = if Mix.env() != :prod, do: to_string(Mix.env())
121
122 build =
123 [build_name, env_name]
124 |> Enum.filter(fn string -> string && string != "" end)
125 |> Enum.join("-")
126 |> (fn
127 "" -> nil
128 string -> "+" <> string
129 end).()
130
131 [version, git_pre_release, build]
132 |> Enum.filter(fn string -> string && string != "" end)
133 |> Enum.join()
134 end
135 end