generated from mirego/elixir-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 8
/
mix.exs
106 lines (88 loc) · 2.66 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
defmodule PhoenixChannelWorkshop.Mixfile do
use Mix.Project
def project do
[
app: :phoenix_channel_workshop,
version: "0.0.1",
elixir: "~> 1.11",
erlang: "~> 23.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: [:phoenix, :gettext] Mix.compilers(),
start_permanent: Mix.env() == :prod,
aliases: aliases(),
deps: deps(),
releases: releases()
]
end
def application do
[
mod: {PhoenixChannelWorkshop.Application, []},
extra_applications: [:logger, :runtime_tools]
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
defp aliases do
[
"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
[
# HTTP Client
{:hackney, "~> 1.16"},
# HTTP server
{:plug_cowboy, "~> 2.4"},
{:plug_canonical_host, "~> 2.0"},
{:corsica, "~> 1.1"},
# Phoenix
{:phoenix, "~> 1.5.7"},
{:phoenix_html, "~> 2.14.2"},
{:phoenix_ecto, "~> 4.2"},
{:phoenix_live_reload, "~> 1.3", only: :dev},
{:jason, "~> 1.2"},
# Database
{:ecto_sql, "~> 3.5"},
{:postgrex, "~> 0.15"},
# Translations
{:gettext, "~> 0.18"},
# Errors
{:sentry, "~> 8.0"},
# Monitoring
{:new_relic_agent, "~> 1.20"},
{:new_relic_phoenix, "~> 0.3"},
# Linting
{:credo, "~> 1.5", only: [:dev, :test], override: true},
{:credo_envvar, "~> 0.1", only: [:dev, :test], runtime: false},
{:credo_naming, "~> 0.6", only: [:dev, :test], runtime: false},
# Security check
{:sobelow, "~> 0.10", only: [:dev, :test], runtime: true},
{:mix_audit, "~> 0.1", only: [:dev, :test], runtime: false},
# Health
{:plug_checkup, "~> 0.6"},
# Test factories
{:ex_machina, "~> 2.4", only: :test},
{:faker, "~> 0.16", only: :test},
# Test coverage
{:excoveralls, "~> 0.13", only: :test},
# Events handling
{:gen_stage, "~> 1.0"}
]
end
defp releases do
[
phoenix_channel_workshop: [
version: {:from_app, :phoenix_channel_workshop},
applications: [phoenix_channel_workshop: :permanent],
include_executables_for: [:unix],
steps: [:assemble, :tar]
]
]
end
end