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