forked from mirego/elixir-boilerplate
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
116 lines (97 loc) · 2.88 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
112
113
114
115
116
defmodule ElixirBoilerplate.Mixfile do
use Mix.Project
def project do
[
app: :elixir_boilerplate,
version: "0.0.1",
elixir: "~> 1.12",
erlang: "~> 24.1",
elixirc_paths: elixirc_paths(Mix.env()),
test_paths: ["test"],
test_pattern: "**/*_test.exs",
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [coveralls: :test, "coveralls.detail": :test, "coveralls.post": :test, "coveralls.html": :test],
compilers: [:gettext] ++ Mix.compilers(),
start_permanent: Mix.env() == :prod,
aliases: aliases(),
deps: deps(),
releases: releases()
]
end
def application do
[
mod: {ElixirBoilerplate.Application, []},
extra_applications: [:logger, :runtime_tools]
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
defp aliases do
[
"assets.deploy": [
"esbuild default --minify",
"phx.digest"
],
"ecto.setup": ["ecto.create", "ecto.migrate", "run priv/repo/seeds.exs"],
"ecto.reset": ["ecto.drop", "ecto.setup"],
test: ["ecto.create --quiet", "ecto.migrate", "test"]
]
end
defp deps do
[
# Assets bundling
{:esbuild, "~> 0.4", runtime: Mix.env() == :dev},
# HTTP Client
{:hackney, "~> 1.18"},
# HTTP server
{:plug_cowboy, "~> 2.5"},
{:plug_canonical_host, "~> 2.0"},
{:corsica, "~> 1.1"},
# Phoenix
{:phoenix, "~> 1.6"},
{:phoenix_html, "~> 3.2"},
{:phoenix_ecto, "~> 4.4"},
{:phoenix_live_reload, "~> 1.3", only: :dev},
{:jason, "~> 1.2"},
# GraphQL
{:absinthe, "~> 1.7"},
{:absinthe_plug, "~> 1.5.8"},
{:dataloader, "~> 1.0"},
{:absinthe_error_payload, "~> 1.1"},
# Database
{:ecto_sql, "~> 3.7"},
{:postgrex, "~> 0.16"},
# Translations
{:gettext, "~> 0.19"},
# Errors
{:sentry, "~> 8.0"},
# Monitoring
{:new_relic_agent, "~> 1.27"},
{:new_relic_absinthe, "~> 0.0"},
# Linting
{:credo, "~> 1.6", only: [:dev, :test], override: true},
{:credo_envvar, "~> 0.1", only: [:dev, :test], runtime: false},
{:credo_naming, "~> 2.0", only: [:dev, :test], runtime: false},
# Security check
{:sobelow, "~> 0.11", only: [:dev, :test], runtime: true},
{:mix_audit, "~> 1.0", only: [:dev, :test], runtime: false},
# Health
{:plug_checkup, "~> 0.6"},
# Test factories
{:ex_machina, "~> 2.7", only: :test},
{:faker, "~> 0.17", only: :test},
# Test coverage
{:excoveralls, "~> 0.14", only: :test}
]
end
defp releases do
[
elixir_boilerplate: [
version: {:from_app, :elixir_boilerplate},
applications: [elixir_boilerplate: :permanent],
include_executables_for: [:unix],
steps: [:assemble, :tar]
]
]
end
end