1 defmodule Pleroma.Mixfile do
7 version: version("0.9.0"),
9 elixirc_paths: elixirc_paths(Mix.env()),
10 compilers: [:phoenix, :gettext] ++ Mix.compilers(),
11 elixirc_options: [warnings_as_errors: true],
12 xref: [exclude: [:eldap]],
13 start_permanent: Mix.env() == :prod,
16 test_coverage: [tool: ExCoveralls],
20 homepage_url: "https://pleroma.social/",
21 source_url: "https://git.pleroma.social/pleroma/pleroma",
24 "https://git.pleroma.social/pleroma/pleroma/blob/develop/%{path}#L%{line}",
25 logo: "priv/static/static/logo.png",
26 extras: ["README.md", "CHANGELOG.md"] ++ Path.wildcard("docs/**/*.md"),
28 "Installation manuals": Path.wildcard("docs/installation/*.md"),
29 Configuration: Path.wildcard("docs/config/*.md"),
30 Administration: Path.wildcard("docs/admin/*.md"),
31 "Pleroma's APIs and Mastodon API extensions": Path.wildcard("docs/api/*.md")
34 output: "priv/static/doc"
39 # Configuration for the OTP application.
41 # Type `mix help compile.app` for more information.
43 extra_applications = [:logger, :runtime_tools, :comeonin, :quack]
44 extra_applications = if Application.get_env(:esshd, :enabled, false) do
45 [:esshd | extra_applications]
51 mod: {Pleroma.Application, []},
52 extra_applications: extra_applications,
53 included_applications: [:ex_syslogger]
57 # Specifies which paths to compile per environment.
58 defp elixirc_paths(:test), do: ["lib", "test/support"]
59 defp elixirc_paths(_), do: ["lib"]
61 # Specifies your project dependencies.
63 # Type `mix help deps` for examples and options.
65 oauth_strategies = String.split(System.get_env("OAUTH_CONSUMER_STRATEGIES") || "")
68 for s <- oauth_strategies,
69 do: {String.to_atom("ueberauth_#{s}"), ">= 0.0.0"}
72 {:phoenix, "~> 1.4.1"},
73 {:plug_cowboy, "~> 2.0"},
74 {:phoenix_pubsub, "~> 1.1"},
75 {:phoenix_ecto, "~> 4.0"},
77 git: "https://github.com/elixir-ecto/ecto_sql",
78 ref: "14cb065a74c488d737d973f7a91bc036c6245f78",
80 {:postgrex, ">= 0.13.5"},
81 {:gettext, "~> 0.15"},
82 {:comeonin, "~> 4.1.1"},
83 {:pbkdf2_elixir, "~> 0.12.3"},
84 {:trailing_format_plug, "~> 0.0.7"},
85 {:html_sanitize_ex, "~> 1.3.0"},
86 {:html_entities, "~> 0.4"},
87 {:phoenix_html, "~> 2.10"},
88 {:calendar, "~> 0.17.4"},
89 {:cachex, "~> 3.0.2"},
90 {:httpoison, "~> 1.2.0"},
91 {:poison, "~> 3.0", override: true},
94 {:mogrify, "~> 0.6.1"},
96 {:ex_aws_s3, "~> 2.0"},
99 {:ex_machina, "~> 2.3", only: :test},
100 {:credo, "~> 0.9.3", only: [:dev, :test]},
101 {:mock, "~> 0.3.3", only: :test},
103 git: "https://github.com/msantos/crypt", ref: "1f2b58927ab57e72910191a7ebaeff984382a1d3"},
104 {:cors_plug, "~> 1.5"},
105 {:ex_doc, "~> 0.20.2", only: :dev, runtime: false},
106 {:web_push_encryption, "~> 0.2.1"},
107 {:swoosh, "~> 0.20"},
108 {:gen_smtp, "~> 0.13"},
109 {:websocket_client, git: "https://github.com/jeremyong/websocket_client.git", only: :test},
110 {:floki, "~> 0.20.0"},
111 {:ex_syslogger, github: "slashmili/ex_syslogger", tag: "1.4.0"},
113 {:ueberauth, "~> 0.4"},
115 git: "https://git.pleroma.social/pleroma/auto_linker.git",
116 ref: "c00c4e75b35367fa42c95ffd9b8c455bf9995829"},
118 git: "https://git.pleroma.social/pleroma/http_signatures.git",
119 ref: "9789401987096ead65646b52b5a2ca6bf52fc531"},
120 {:pleroma_job_queue, "~> 0.2.0"},
121 {:telemetry, "~> 0.3"},
122 {:prometheus_ex, "~> 3.0"},
123 {:prometheus_plugs, "~> 1.1"},
124 {:prometheus_phoenix, "~> 1.2"},
125 {:prometheus_ecto, "~> 1.4"},
126 {:prometheus_process_collector, "~> 1.4"},
127 {:recon, github: "ferd/recon", tag: "2.4.0"},
128 {:quack, "~> 0.1.1"},
129 {:benchee, "~> 1.0"},
130 {:esshd, "~> 0.1.0"},
131 {:ex_rated, "~> 1.2"},
132 {:plug_static_index_html, "~> 1.0.0"},
133 {:excoveralls, "~> 0.11.1", only: :test}
137 # Aliases are shortcuts or tasks specific to the current project.
138 # For example, to create, migrate and run the seeds file at once:
142 # See the documentation for `Mix` for more info on aliases.
145 "ecto.setup": ["ecto.create", "ecto.migrate", "run priv/repo/seeds.exs"],
146 "ecto.reset": ["ecto.drop", "ecto.setup"],
147 test: ["ecto.create --quiet", "ecto.migrate", "test"]
151 # Builds a version string made of:
152 # * the application version
153 # * a pre-release if ahead of the tag: the describe string (-count-commithash)
155 # * a build name if `PLEROMA_BUILD_NAME` or `:pleroma, :build_name` is defined
156 # * the mix environment if different than prod
157 defp version(version) do
158 {git_tag, git_pre_release} =
159 with {tag, 0} <- System.cmd("git", ["describe", "--tags", "--abbrev=0"]),
160 tag = String.trim(tag),
161 {describe, 0} <- System.cmd("git", ["describe", "--tags", "--abbrev=8"]),
162 describe = String.trim(describe),
163 ahead <- String.replace(describe, tag, "") do
164 {String.replace_prefix(tag, "v", ""), if(ahead != "", do: String.trim(ahead))}
169 if git_tag && version != git_tag do
171 "Application version #{inspect(version)} does not match git tag #{inspect(git_tag)}"
177 name = Application.get_env(:pleroma, :build_name) -> name
178 name = System.get_env("PLEROMA_BUILD_NAME") -> name
182 env_name = if Mix.env() != :prod, do: to_string(Mix.env())
185 [build_name, env_name]
186 |> Enum.filter(fn string -> string && string != "" end)
190 string -> "+" <> string
193 [version, git_pre_release, build]
194 |> Enum.filter(fn string -> string && string != "" end)