-
Notifications
You must be signed in to change notification settings - Fork 909
Expand file tree
/
Copy pathmix.exs
More file actions
120 lines (111 loc) · 3.15 KB
/
mix.exs
File metadata and controls
120 lines (111 loc) · 3.15 KB
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
defmodule TeslaMate.MixProject do
use Mix.Project
def project do
[
app: :teslamate,
version: version(),
elixir: "~> 1.17",
elixirc_paths: elixirc_paths(Mix.env()),
compilers: Mix.compilers(),
start_permanent: Mix.env() == :prod,
aliases: aliases(),
releases: releases(),
deps: deps(),
dialyzer: dialyzer(),
test_coverage: [tool: ExCoveralls]
]
end
def cli do
[
preferred_cli_env: [
coveralls: :test,
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :test,
"coveralls.github": :test,
ci: :test
]
]
end
def application do
[
mod: {TeslaMate.Application, []},
extra_applications: [:logger, :runtime_tools]
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
defp deps do
[
{:castore, "~> 1.0"},
{:ecto_sql, "~> 3.0"},
{:ex_cldr, "~> 2.47.1"},
{:ex_cldr_plugs, "~> 1.0"},
{:excoveralls, "~> 0.18.5", only: :test},
{:finch, "~> 0.20"},
{:floki, "~> 0.38"},
{:fuse, "~> 2.5"},
{:gen_state_machine, "~> 3.0"},
# https://github.com/bitwalker/timex/pull/783
{:gettext, "~> 1.0", override: true},
{:jason, "~> 1.4"},
{:mock, "~> 0.3", only: :test},
{:nimble_csv, "~> 1.3"},
{:phoenix, "~> 1.7.0"},
{:phoenix_bakery, "~> 1.0", runtime: false},
{:phoenix_view, "~> 2.0"},
{:phoenix_ecto, "~> 4.7"},
{:phoenix_html, "~> 4.3"},
{:phoenix_html_helpers, "~> 1.0"},
{:phoenix_live_reload, "~> 1.6", only: :dev},
{:phoenix_live_view, "~> 0.20.17"},
{:phoenix_pubsub, "~> 2.0"},
{:plug_cowboy, "~> 2.0"},
{:postgrex, ">= 0.0.0"},
{:ranch, "~> 2.2"},
{:srtm, "~> 0.8.0"},
{:tesla, "~> 1.14"},
{:timex, "~> 3.7"},
{:tortoise311, "~> 0.12"},
{:tzdata, "~> 1.1"},
{:websockex, "~> 0.5"},
{:cloak_ecto, "~> 1.3"},
{:dialyxir, "~> 1.4", only: [:dev], runtime: false},
{:credo, "~> 1.7.1", only: [:dev], runtime: false}
]
end
defp aliases do
[
setup: ["deps.get", "ecto.setup", "cmd --cd assets npm ci --no-audit --loglevel=error"],
"ecto.setup": ["ecto.create", "ecto.migrate"],
"ecto.reset": ["ecto.drop", "ecto.setup"],
"assets.deploy": ["cmd --cd assets node scripts/build.js", "phx.digest"],
test: ["ecto.create --quiet", "ecto.migrate --quiet", "test --no-start"],
ci: ["format --check-formatted", "deps.unlock --check-unused", "test --raise"]
]
end
defp dialyzer do
[
plt_file: {:no_warn, "priv/plts/dialyzer.plt"},
plt_core_path: "priv/plts/",
plt_add_apps: [:mix, :ex_unit],
plt_ignore_apps: [],
ignore_warnings: ".dialyzer_ignore.exs",
list_unused_filters: true
]
end
defp releases do
[
teslamate: [
include_executables_for: [:unix],
applications: [runtime_tools: :permanent]
]
]
end
defp version do
case File.read("VERSION") do
{:ok, version} -> String.trim(version)
{:error, _reason} -> "0.0.0"
end
end
end