-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathmix.exs
93 lines (80 loc) Β· 2.31 KB
/
mix.exs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
defmodule Api.MixProject do
use Mix.Project
defp version do
version = git_vsn()
case Version.parse(version) do
{:ok, %Version{pre: ["pre" <> _ | _]} = version} ->
to_string(version)
{:ok, %Version{pre: []} = version} ->
to_string(version)
{:ok, %Version{patch: patch, pre: pre} = version} ->
to_string(%{version | patch: patch + 1, pre: ["dev" | pre]})
:error ->
Mix.shell().error("Failed to parse, falling back to 0.0.0")
"0.0.0"
end
end
defp git_vsn() do
case System.cmd("git", ~w[describe --dirty=+dirty]) do
{version, 0} ->
String.trim_leading(String.trim(version), "v")
{_, code} ->
Mix.shell().error("Git exited with code #{code}, falling back to 0.0.0")
"0.0.0"
end
end
def project do
[
app: :api,
version: version(),
build_path: "../../_build",
config_path: "../../config/config.exs",
deps_path: "../../deps",
lockfile: "../../mix.lock",
elixir: "~> 1.5",
elixirc_paths: elixirc_paths(Mix.env()),
compilers: [:phoenix] ++ Mix.compilers(),
start_permanent: Mix.env() == :prod,
aliases: aliases(),
deps: deps()
]
end
def application do
[
mod: {Api.Application, []},
extra_applications: [:logger, :runtime_tools]
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
defp deps do
[
{:sentry, "8.0.6"},
{:phoenix, "~> 1.6.0"},
{:phoenix_pubsub, "~> 2.0"},
{:phoenix_ecto, "~> 4.4.0"},
{:ecto_sql, "~> 3.9.1"},
{:postgrex, ">= 0.0.0"},
{:phoenix_html, "~> 3.2.0"},
{:basic_auth, "~> 2.2.5"},
{:phoenix_live_reload, "~> 1.4.1", only: :dev},
{:gettext, "~> 0.20"},
{:jason, "~> 1.0"},
{:guardian, "~> 1.2.1"},
{:cors_plug, "~> 2.0"},
{:plug_cowboy, "~> 2.6.0", override: true},
{:reverse_proxy_plug, "~> 2.1.1"},
{:libcluster, "~> 3.3.1"},
{:prometheus_ex, "~> 3.0"},
{:prometheus_plugs, "~> 1.1.1"},
{:remote_ip, "~> 0.2.0"},
{:k8s_traffic_plug, github: "Financial-Times/k8s_traffic_plug"},
{:core, in_umbrella: true},
{:graphql, in_umbrella: true},
{:email, in_umbrella: true}
]
end
defp aliases do
[]
end
end