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 start_permanent: Mix.env() == :prod,
18 source_url: "https://git.pleroma.social/pleroma/pleroma",
20 "https://git.pleroma.social/pleroma/pleroma/blob/develop/%{path}#L%{line}",
21 homepage_url: "https://pleroma.social/",
23 logo: "priv/static/static/logo.png",
29 "docs/Custom-Emoji.md",
30 "docs/Differences-in-MastodonAPI-Responses.md",
31 "docs/Message-Rewrite-Facility-configuration.md",
32 "docs/Pleroma-API.md",
36 output: "priv/static/doc"
41 # Configuration for the OTP application.
43 # Type `mix help compile.app` for more information.
46 mod: {Pleroma.Application, []},
47 extra_applications: [:logger, :runtime_tools, :comeonin],
48 included_applications: [:ex_syslogger]
52 # Specifies which paths to compile per environment.
53 defp elixirc_paths(:test), do: ["lib", "test/support"]
54 defp elixirc_paths(_), do: ["lib"]
56 # Specifies your project dependencies.
58 # Type `mix help deps` for examples and options.
61 {:phoenix, "~> 1.4.1"},
62 {:plug_cowboy, "~> 2.0"},
63 {:phoenix_pubsub, "~> 1.1"},
64 {:phoenix_ecto, "~> 3.3"},
65 {:postgrex, ">= 0.13.5"},
66 {:gettext, "~> 0.15"},
67 {:comeonin, "~> 4.1.1"},
68 {:pbkdf2_elixir, "~> 0.12.3"},
69 {:trailing_format_plug, "~> 0.0.7"},
70 {:html_sanitize_ex, "~> 1.3.0"},
71 {:html_entities, "~> 0.4"},
72 {:phoenix_html, "~> 2.10"},
73 {:calendar, "~> 0.17.4"},
74 {:cachex, "~> 3.0.2"},
75 {:httpoison, "~> 1.2.0"},
78 {:mogrify, "~> 0.6.1"},
80 {:ex_aws_s3, "~> 2.0"},
82 {:ex_machina, "~> 2.3", only: :test},
83 {:credo, "~> 0.9.3", only: [:dev, :test]},
84 {:mock, "~> 0.3.1", only: :test},
86 git: "https://github.com/msantos/crypt", ref: "1f2b58927ab57e72910191a7ebaeff984382a1d3"},
87 {:cors_plug, "~> 1.5"},
88 {:ex_doc, "~> 0.19", only: :dev, runtime: false},
89 {:web_push_encryption, "~> 0.2.1"},
91 {:gen_smtp, "~> 0.13"},
92 {:websocket_client, git: "https://github.com/jeremyong/websocket_client.git", only: :test},
93 {:floki, "~> 0.20.0"},
94 {:ex_syslogger, github: "slashmili/ex_syslogger", tag: "1.4.0"},
97 git: "https://git.pleroma.social/pleroma/auto_linker.git",
98 ref: "94193ca5f97c1f9fdf3d1469653e2d46fac34bcd"}
102 # Aliases are shortcuts or tasks specific to the current project.
103 # For example, to create, migrate and run the seeds file at once:
107 # See the documentation for `Mix` for more info on aliases.
110 "ecto.setup": ["ecto.create", "ecto.migrate", "run priv/repo/seeds.exs"],
111 "ecto.reset": ["ecto.drop", "ecto.setup"],
112 test: ["ecto.create --quiet", "ecto.migrate", "test"]
116 # Builds a version string made of:
117 # * the application version
118 # * a pre-release if ahead of the tag: the describe string (-count-commithash)
120 # * a build name if `PLEROMA_BUILD_NAME` or `:pleroma, :build_name` is defined
121 # * the mix environment if different than prod
122 defp version(version) do
123 {git_tag, git_pre_release} =
124 with {tag, 0} <- System.cmd("git", ["describe", "--tags", "--abbrev=0"]),
125 tag = String.trim(tag),
126 {describe, 0} <- System.cmd("git", ["describe", "--tags", "--abbrev=8"]),
127 describe = String.trim(describe),
128 ahead <- String.replace(describe, tag, "") do
129 {String.replace_prefix(tag, "v", ""), if(ahead != "", do: String.trim(ahead))}
134 if git_tag && version != git_tag do
136 "Application version #{inspect(version)} does not match git tag #{inspect(git_tag)}"
142 name = Application.get_env(:pleroma, :build_name) -> name
143 name = System.get_env("PLEROMA_BUILD_NAME") -> name
147 env_name = if Mix.env() != :prod, do: to_string(Mix.env())
150 [build_name, env_name]
151 |> Enum.filter(fn string -> string && string != "" end)
155 string -> "+" <> string
158 [version, git_pre_release, build]
159 |> Enum.filter(fn string -> string && string != "" end)