-
Notifications
You must be signed in to change notification settings - Fork 181
/
mix.exs
119 lines (113 loc) · 3.49 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
117
118
119
defmodule Ret.Mixfile do
use Mix.Project
def project do
[
aliases: aliases(),
app: :ret,
compilers: [:phoenix, :gettext] ++ Mix.compilers(),
deps: deps(),
elixir: "~> 1.11",
elixirc_paths: elixirc_paths(Mix.env()),
releases: releases(),
start_permanent: Mix.env() == :prod,
version: System.get_env("RELEASE_VERSION", "1.0.0")
]
end
# Configuration for the OTP application.
#
# Type `mix help compile.app` for more information.
def application do
[
mod: {Ret.Application, []},
extra_applications: [:runtime_tools, :canada]
]
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
[
{:ecto_boot_migration, "~> 0.2.0"},
{:phoenix, "~> 1.5.13"},
{:phoenix_pubsub, "~> 2.1"},
{:phoenix_ecto, "~> 4.0"},
{:plug, "~> 1.7"},
{:ecto, "~> 3.5.4"},
{:ecto_sql, "~> 3.5.4"},
{:absinthe, "~> 1.4"},
{:dataloader, "~> 1.0.0"},
{:absinthe_plug, "~> 1.4"},
{:absinthe_phoenix, "~> 2.0.0"},
{:postgrex, ">= 0.0.0"},
{:phoenix_html, "~> 2.13"},
{:phoenix_live_reload, "~> 1.2", only: :dev},
{:gettext, "~> 0.17"},
{:cowboy, "~> 2.9"},
{:plug_cowboy, "~> 2.1"},
{:peerage, "~> 1.0"},
{:httpoison, "~> 1.5"},
{:poison, "~> 3.1"},
{:ecto_autoslug_field, "~> 2.0"},
{:cors_plug, "~> 2.0"},
{:statix, "~> 1.2"},
{:quantum, "~> 2.2.7"},
{:credo, "~> 1.1", only: [:dev, :test], runtime: false},
{:mox, "~> 1.0.1", only: [:dev, :test]},
{:plug_attack, "~> 0.4"},
{:ecto_enum, "~> 1.3"},
{:cachex, "~> 3.2"},
{:retry, "~> 0.15.0"},
{:open_graph, "~> 0.0.3"},
{:secure_random, "~> 0.5"},
{:bamboo, "~> 1.3"},
{:bamboo_smtp, "~> 1.7"},
{:guardian, "~> 2.3.1"},
{:guardian_phoenix, "~> 2.0"},
{:canary, "~> 1.1.1"},
{:temp, "~> 0.4"},
{:timex, "~> 3.6"},
# 0.2.2 breaks FCM without an auth token, not sure what's up with that.
{:web_push_encryption, "0.2.1"},
{:sentry, "~> 7.0"},
{:toml, "~> 0.5"},
{:scrivener_ecto, "~> 2.0"},
{:ua_parser, "~> 1.5"},
{:download, git: "https://github.com/gfodor/download.git", branch: "reticulum/master"},
{:reverse_proxy_plug, "2.3.0"},
{:inet_cidr, "~> 1.0"},
{:dns, "~> 2.2.0"},
{:oauther, "~> 1.1"},
{:jason, "~> 1.1"},
{:ex_rated, "~> 2.1.0"},
{:mix_test_watch, "~> 1.0", only: :dev, runtime: false},
{:ex_json_schema, "~> 0.7.3"},
{:observer_cli, "~> 1.5"},
{:stream_data, "~> 0.5",
github: "whatyouhide/stream_data", ref: "c7ef8ef", only: [:dev, :test]}
]
end
# Aliases are shortcuts or tasks specific to the current project.
# For example, to create, migrate and run the seeds file at once:
#
# $ mix ecto.setup
#
# See the documentation for `Mix` for more info on aliases.
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 releases,
do: [
ret: [
config_providers: [
{Toml.Provider, [path: {:system, "RELEASE_CONFIG_DIR", "/config.toml"}]}
]
]
]
end