Merge branch 'bugfix/activitypub-reserialization' 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.7",
9 elixirc_paths: elixirc_paths(Mix.env()),
10 compilers: [:phoenix, :gettext] ++ Mix.compilers(),
11 elixirc_options: [warnings_as_errors: true],
12 start_permanent: Mix.env() == :prod,
13 aliases: aliases(),
14 deps: deps(),
15
16 # Docs
17 name: "Pleroma",
18 source_url: "https://git.pleroma.social/pleroma/pleroma",
19 source_url_pattern:
20 "https://git.pleroma.social/pleroma/pleroma/blob/develop/%{path}#L%{line}",
21 homepage_url: "https://pleroma.social/",
22 docs: [
23 logo: "priv/static/static/logo.png",
24 extras: ["README.md", "docs/config.md", "docs/Pleroma-API.md", "docs/Admin-API.md"],
25 main: "readme",
26 output: "priv/static/doc"
27 ]
28 ]
29 end
30
31 # Configuration for the OTP application.
32 #
33 # Type `mix help compile.app` for more information.
34 def application do
35 [
36 mod: {Pleroma.Application, []},
37 extra_applications: [:logger, :runtime_tools, :comeonin],
38 included_applications: [:ex_syslogger]
39 ]
40 end
41
42 # Specifies which paths to compile per environment.
43 defp elixirc_paths(:test), do: ["lib", "test/support"]
44 defp elixirc_paths(_), do: ["lib"]
45
46 # Specifies your project dependencies.
47 #
48 # Type `mix help deps` for examples and options.
49 defp deps do
50 [
51 # Until Phoenix 1.4.1 is released
52 {:phoenix, github: "phoenixframework/phoenix", branch: "v1.4"},
53 {:plug_cowboy, "~> 1.0"},
54 {:phoenix_pubsub, "~> 1.1"},
55 {:phoenix_ecto, "~> 3.3"},
56 {:postgrex, ">= 0.13.5"},
57 {:gettext, "~> 0.15"},
58 {:comeonin, "~> 4.1.1"},
59 {:pbkdf2_elixir, "~> 0.12.3"},
60 {:trailing_format_plug, "~> 0.0.7"},
61 {:html_sanitize_ex, "~> 1.3.0"},
62 {:html_entities, "~> 0.4"},
63 {:phoenix_html, "~> 2.10"},
64 {:calendar, "~> 0.17.4"},
65 {:cachex, "~> 3.0.2"},
66 {:httpoison, "~> 1.2.0"},
67 {:tesla, "~> 1.2"},
68 {:jason, "~> 1.0"},
69 {:mogrify, "~> 0.6.1"},
70 {:ex_aws, "~> 2.0"},
71 {:ex_aws_s3, "~> 2.0"},
72 {:earmark, "~> 1.3"},
73 {:ex_machina, "~> 2.2", only: :test},
74 {:credo, "~> 0.9.3", only: [:dev, :test]},
75 {:mock, "~> 0.3.1", only: :test},
76 {:crypt,
77 git: "https://github.com/msantos/crypt", ref: "1f2b58927ab57e72910191a7ebaeff984382a1d3"},
78 {:cors_plug, "~> 1.5"},
79 {:ex_doc, "~> 0.19", only: :dev, runtime: false},
80 {:web_push_encryption, "~> 0.2.1"},
81 {:swoosh, "~> 0.20"},
82 {:gen_smtp, "~> 0.13"},
83 {:websocket_client, git: "https://github.com/jeremyong/websocket_client.git", only: :test},
84 {:floki, "~> 0.20.0"},
85 {:ex_syslogger, github: "slashmili/ex_syslogger", tag: "1.4.0"}
86 ]
87 end
88
89 # Aliases are shortcuts or tasks specific to the current project.
90 # For example, to create, migrate and run the seeds file at once:
91 #
92 # $ mix ecto.setup
93 #
94 # See the documentation for `Mix` for more info on aliases.
95 defp aliases do
96 [
97 "ecto.setup": ["ecto.create", "ecto.migrate", "run priv/repo/seeds.exs"],
98 "ecto.reset": ["ecto.drop", "ecto.setup"],
99 test: ["ecto.create --quiet", "ecto.migrate", "test"]
100 ]
101 end
102
103 # Builds a version string made of:
104 # * the application version
105 # * a pre-release if ahead of the tag: the describe string (-count-commithash)
106 # * build info:
107 # * a build name if `PLEROMA_BUILD_NAME` or `:pleroma, :build_name` is defined
108 # * the mix environment if different than prod
109 defp version(version) do
110 {git_tag, git_pre_release} =
111 with {tag, 0} <- System.cmd("git", ["describe", "--tags", "--abbrev=0"]),
112 tag = String.trim(tag),
113 {describe, 0} <- System.cmd("git", ["describe", "--tags", "--abbrev=8"]),
114 describe = String.trim(describe),
115 ahead <- String.replace(describe, tag, "") do
116 {String.replace_prefix(tag, "v", ""), if(ahead != "", do: String.trim(ahead))}
117 else
118 _ -> {nil, nil}
119 end
120
121 if git_tag && version != git_tag do
122 Mix.shell().error(
123 "Application version #{inspect(version)} does not match git tag #{inspect(git_tag)}"
124 )
125 end
126
127 build_name =
128 cond do
129 name = Application.get_env(:pleroma, :build_name) -> name
130 name = System.get_env("PLEROMA_BUILD_NAME") -> name
131 true -> nil
132 end
133
134 env_name = if Mix.env() != :prod, do: to_string(Mix.env())
135
136 build =
137 [build_name, env_name]
138 |> Enum.filter(fn string -> string && string != "" end)
139 |> Enum.join("-")
140 |> (fn
141 "" -> nil
142 string -> "+" <> string
143 end).()
144
145 [version, git_pre_release, build]
146 |> Enum.filter(fn string -> string && string != "" end)
147 |> Enum.join()
148 end
149 end