forked from teslamate-org/teslamate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
111 lines (103 loc) Β· 2.93 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
104
105
106
107
108
109
110
111
defmodule TeslaMate.MixProject do
use Mix.Project
def project do
[
app: :teslamate,
version: version(),
elixir: "~> 1.12",
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],
preferred_cli_env: [
coveralls: :test,
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :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.37.0"},
{:ex_cldr_plugs, "~> 1.0"},
{:excoveralls, "~> 0.10", only: :test},
{:finch, "~> 0.3"},
{:floki, "~> 0.23"},
{:fuse, "~> 2.4"},
{:gen_state_machine, "~> 3.0"},
{:gettext, "~> 0.11"},
{:jason, "~> 1.0"},
{:mock, "~> 0.3", only: :test},
{:nimble_csv, "~> 1.1"},
{:phoenix, "~> 1.7.0"},
{:phoenix_view, "~> 2.0"},
{:phoenix_ecto, "~> 4.0"},
{:phoenix_html, "~> 3.0"},
{:phoenix_live_reload, "~> 1.2", only: :dev},
{:phoenix_live_view, "~> 0.18.18"},
{:phoenix_pubsub, "~> 2.0"},
{:plug_cowboy, "~> 2.0"},
{:postgrex, ">= 0.0.0"},
{:ranch, "~> 2.1", override: true},
{:srtm, "~> 0.8.0"},
{:tesla, "~> 1.4"},
{:timex, "~> 3.0"},
{:tortoise, "~> 0.10"},
{:tzdata, "~> 1.1"},
{:websockex, "~> 0.4"},
{:cloak_ecto, "~> 1.2"},
{:dialyxir, "~> 1.3", 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 npm run deploy", "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