-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathmix.exs
103 lines (90 loc) Β· 2.8 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
94
95
96
97
98
99
100
101
102
103
defmodule Rtc.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: :rtc,
version: version(),
build_path: "../../_build",
config_path: "../../config/config.exs",
deps_path: "../../deps",
lockfile: "../../mix.lock",
elixir: "~> 1.7",
elixirc_paths: elixirc_paths(Mix.env()),
compilers: [:phoenix] ++ Mix.compilers(),
start_permanent: Mix.env() == :prod,
aliases: aliases(),
deps: deps()
]
end
# Configuration for the OTP application.
#
# Type `mix help compile.app` for more information.
def application do
[
mod: {Rtc.Application, []},
extra_applications: [:logger, :runtime_tools]
]
end
# Specifies which paths to compile per environment.
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
# Specifies your project dependencies.
#
# Type `mix help deps` for examples and options.
defp deps do
[
{:sentry, "8.0.6"},
{:phoenix, "~> 1.6.0"},
{:phoenix_html, "~> 3.2.0"},
{:phoenix_live_reload, "~> 1.4.1", only: :dev},
{:telemetry_metrics, "~> 0.6.1"},
{:telemetry_poller, "~> 1.0.0"},
{:gettext, "~> 0.20"},
{:jason, "~> 1.0"},
{:plug_cowboy, "~> 2.6.0", override: true},
{:absinthe_phoenix, "~> 2.0.2"},
{:libcluster, "~> 3.3.1"},
{:prometheus_ex, "~> 3.0"},
{:prometheus_plugs, "~> 1.1.1"},
{:websockex, "~> 0.4"},
{:k8s_traffic_plug, github: "Financial-Times/k8s_traffic_plug"},
{:briefly, [env: :prod, git: "https://github.com/CargoSense/briefly", ref: "b0fd495bf0c5ef2c44de2791a8cc7a20813c7d36"]},
{:core, in_umbrella: true},
{:graphql, in_umbrella: true}
]
end
# Aliases are shortcuts or tasks specific to the current project.
# For example, to install project dependencies and perform other setup tasks, run:
#
# $ mix setup
#
# See the documentation for `Mix` for more info on aliases.
defp aliases do
[
setup: ["deps.get", "cmd npm install --prefix assets"]
]
end
end