-
Notifications
You must be signed in to change notification settings - Fork 246
/
mix.exs
106 lines (100 loc) · 3.17 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 Changelog.Mixfile do
use Mix.Project
@oban_envs [:prod]
if System.get_env("OBAN_LICENSE_KEY") do
@oban_envs [:dev, :prod]
end
def project do
[
app: :changelog,
version: System.get_env("APP_VERSION", "0.0.1"),
elixir: "~> 1.16",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
aliases: aliases(),
deps: deps()
]
end
# Configuration for the OTP application.
#
# Type `mix help compile.app` for more information.
def application do
[
mod: {Changelog.Application, []},
extra_applications: [:logger, :runtime_tools]
]
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
[
{:phoenix, "~> 1.7.11"},
{:phoenix_view, "~> 2.0"},
{:phoenix_ecto, "~> 4.4"},
{:ecto_sql, "~> 3.10"},
{:postgrex, ">= 0.0.0"},
{:phoenix_html, "~> 3.3"},
{:phoenix_live_view, "~> 0.20.2"},
{:phoenix_live_reload, "~> 1.2", only: :dev},
{:plug_cowboy, "~> 2.5"},
{:oban, "~> 2.15"},
{:oban_web, "~> 2.10.2", repo: "oban", only: @oban_envs},
{:timex, "~> 3.0"},
{:scrivener_ecto, "~> 3.0"},
{:cmark, "~> 0.6"},
{:floki, "~> 0.36"},
{:waffle_ecto, "~> 0.0"},
{:ecto_enum, "~> 1.0"},
{:hashids, "~> 2.0"},
{:swoosh, "~> 1.16"},
{:gen_smtp, "~> 1.0"},
{:httpoison, "~> 2.2.1", override: true},
{:jason, "~> 1.0"},
{:con_cache, "~> 1.0.0"},
{:ex_aws, "~> 2.2"},
{:ex_aws_s3, "~> 2.3"},
{:nimble_csv, "~> 1.2.0"},
{:sweet_xml, "~> 0.6"},
{:oauth, github: "tim/erlang-oauth"},
{:ueberauth, "~> 0.10"},
{:ueberauth_github, "~> 0.4"},
{:ex_machina, "~> 2.0"},
{:sentry, "~> 10.1"},
{:html_entities, "~> 0.3"},
{:tzdata, "~> 1.1.0"},
{:icalendar, "~> 1.0"},
# TODO: find replacement for dead https://github.com/nsweeting/shopify
{:shopify, "~> 0.4", github: "ankhers/shopify", branch: "otp24_upgrade"},
{:stripity_stripe, "~> 3.2"},
{:id3vx, "~> 0.0.1-rc6"},
{:xml_builder, "~> 2.1"},
{:credo, "~> 1.7", only: [:dev, :test], runtime: false},
{:mock, "~> 0.3.0", only: :test},
{:opentelemetry_exporter, "~> 1.0"},
{:opentelemetry, "~> 1.0"},
{:opentelemetry_api, "~> 1.0"},
{:opentelemetry_cowboy, "~> 0.3.0"},
{:opentelemetry_ecto, "~> 1.0"},
{:opentelemetry_oban, "~> 1.0"},
{:opentelemetry_phoenix, "~> 1.0"}
]
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"],
"ecto.reset": ["ecto.drop", "ecto.setup"],
test: ["ecto.create --quiet", "ecto.migrate", "test"],
"deps.get_dev": ["deps.unlock oban_web oban_met", "deps.get --only dev"]
]
end
end