Mix: Only start sshd when needed, second try.
[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 xref: [exclude: [:eldap]],
13 start_permanent: Mix.env() == :prod,
14 aliases: aliases(),
15 deps: deps(),
16 test_coverage: [tool: ExCoveralls],
17
18 # Docs
19 name: "Pleroma",
20 homepage_url: "https://pleroma.social/",
21 source_url: "https://git.pleroma.social/pleroma/pleroma",
22 docs: [
23 source_url_pattern:
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"),
27 groups_for_extras: [
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")
32 ],
33 main: "readme",
34 output: "priv/static/doc"
35 ]
36 ]
37 end
38
39 # Configuration for the OTP application.
40 #
41 # Type `mix help compile.app` for more information.
42 def application do
43 [
44 mod: {Pleroma.Application, []},
45 extra_applications: [:logger, :runtime_tools, :comeonin, :quack],
46 included_applications: [:ex_syslogger]
47 ]
48 end
49
50 # Specifies which paths to compile per environment.
51 defp elixirc_paths(:test), do: ["lib", "test/support"]
52 defp elixirc_paths(_), do: ["lib"]
53
54 # Specifies your project dependencies.
55 #
56 # Type `mix help deps` for examples and options.
57 defp deps do
58 oauth_strategies = String.split(System.get_env("OAUTH_CONSUMER_STRATEGIES") || "")
59
60 oauth_deps =
61 for s <- oauth_strategies,
62 do: {String.to_atom("ueberauth_#{s}"), ">= 0.0.0"}
63
64 [
65 {:phoenix, "~> 1.4.1"},
66 {:plug_cowboy, "~> 2.0"},
67 {:phoenix_pubsub, "~> 1.1"},
68 {:phoenix_ecto, "~> 4.0"},
69 {:ecto_sql,
70 git: "https://github.com/elixir-ecto/ecto_sql",
71 ref: "14cb065a74c488d737d973f7a91bc036c6245f78",
72 override: true},
73 {:postgrex, ">= 0.13.5"},
74 {:gettext, "~> 0.15"},
75 {:comeonin, "~> 4.1.1"},
76 {:pbkdf2_elixir, "~> 0.12.3"},
77 {:trailing_format_plug, "~> 0.0.7"},
78 {:html_sanitize_ex, "~> 1.3.0"},
79 {:html_entities, "~> 0.4"},
80 {:phoenix_html, "~> 2.10"},
81 {:calendar, "~> 0.17.4"},
82 {:cachex, "~> 3.0.2"},
83 {:httpoison, "~> 1.2.0"},
84 {:poison, "~> 3.0", override: true},
85 {:tesla, "~> 1.2"},
86 {:jason, "~> 1.0"},
87 {:mogrify, "~> 0.6.1"},
88 {:ex_aws, "~> 2.0"},
89 {:ex_aws_s3, "~> 2.0"},
90 {:earmark, "~> 1.3"},
91 {:bbcode, "~> 0.1"},
92 {:ex_machina, "~> 2.3", only: :test},
93 {:credo, "~> 0.9.3", only: [:dev, :test]},
94 {:mock, "~> 0.3.3", only: :test},
95 {:crypt,
96 git: "https://github.com/msantos/crypt", ref: "1f2b58927ab57e72910191a7ebaeff984382a1d3"},
97 {:cors_plug, "~> 1.5"},
98 {:ex_doc, "~> 0.20.2", only: :dev, runtime: false},
99 {:web_push_encryption, "~> 0.2.1"},
100 {:swoosh, "~> 0.20"},
101 {:gen_smtp, "~> 0.13"},
102 {:websocket_client, git: "https://github.com/jeremyong/websocket_client.git", only: :test},
103 {:floki, "~> 0.20.0"},
104 {:ex_syslogger, github: "slashmili/ex_syslogger", tag: "1.4.0"},
105 {:timex, "~> 3.5"},
106 {:ueberauth, "~> 0.4"},
107 {:auto_linker,
108 git: "https://git.pleroma.social/pleroma/auto_linker.git",
109 ref: "c00c4e75b35367fa42c95ffd9b8c455bf9995829"},
110 {:http_signatures,
111 git: "https://git.pleroma.social/pleroma/http_signatures.git",
112 ref: "9789401987096ead65646b52b5a2ca6bf52fc531"},
113 {:pleroma_job_queue, "~> 0.2.0"},
114 {:telemetry, "~> 0.3"},
115 {:prometheus_ex, "~> 3.0"},
116 {:prometheus_plugs, "~> 1.1"},
117 {:prometheus_phoenix, "~> 1.2"},
118 {:prometheus_ecto, "~> 1.4"},
119 {:prometheus_process_collector, "~> 1.4"},
120 {:recon, github: "ferd/recon", tag: "2.4.0"},
121 {:quack, "~> 0.1.1"},
122 {:benchee, "~> 1.0"},
123 {:esshd, "~> 0.1.0", runtime: Application.get_env(:esshd, :enabled, false)},
124 {:ex_rated, "~> 1.2"},
125 {:plug_static_index_html, "~> 1.0.0"},
126 {:excoveralls, "~> 0.11.1", only: :test}
127 ] ++ oauth_deps
128 end
129
130 # Aliases are shortcuts or tasks specific to the current project.
131 # For example, to create, migrate and run the seeds file at once:
132 #
133 # $ mix ecto.setup
134 #
135 # See the documentation for `Mix` for more info on aliases.
136 defp aliases do
137 [
138 "ecto.setup": ["ecto.create", "ecto.migrate", "run priv/repo/seeds.exs"],
139 "ecto.reset": ["ecto.drop", "ecto.setup"],
140 test: ["ecto.create --quiet", "ecto.migrate", "test"]
141 ]
142 end
143
144 # Builds a version string made of:
145 # * the application version
146 # * a pre-release if ahead of the tag: the describe string (-count-commithash)
147 # * build info:
148 # * a build name if `PLEROMA_BUILD_NAME` or `:pleroma, :build_name` is defined
149 # * the mix environment if different than prod
150 defp version(version) do
151 {git_tag, git_pre_release} =
152 with {tag, 0} <- System.cmd("git", ["describe", "--tags", "--abbrev=0"]),
153 tag = String.trim(tag),
154 {describe, 0} <- System.cmd("git", ["describe", "--tags", "--abbrev=8"]),
155 describe = String.trim(describe),
156 ahead <- String.replace(describe, tag, "") do
157 {String.replace_prefix(tag, "v", ""), if(ahead != "", do: String.trim(ahead))}
158 else
159 _ -> {nil, nil}
160 end
161
162 if git_tag && version != git_tag do
163 Mix.shell().error(
164 "Application version #{inspect(version)} does not match git tag #{inspect(git_tag)}"
165 )
166 end
167
168 build_name =
169 cond do
170 name = Application.get_env(:pleroma, :build_name) -> name
171 name = System.get_env("PLEROMA_BUILD_NAME") -> name
172 true -> nil
173 end
174
175 env_name = if Mix.env() != :prod, do: to_string(Mix.env())
176
177 build =
178 [build_name, env_name]
179 |> Enum.filter(fn string -> string && string != "" end)
180 |> Enum.join("-")
181 |> (fn
182 "" -> nil
183 string -> "+" <> string
184 end).()
185
186 [version, git_pre_release, build]
187 |> Enum.filter(fn string -> string && string != "" end)
188 |> Enum.join()
189 end
190 end