-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmix.exs
More file actions
74 lines (67 loc) · 1.97 KB
/
mix.exs
File metadata and controls
74 lines (67 loc) · 1.97 KB
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
defmodule Flowr.Umbrella.MixProject do
use Mix.Project
def project do
[
app: :flowr,
version: "0.1.0",
build_path: "_build",
config_path: "config/config.exs",
deps_path: "deps",
lockfile: "mix.lock",
elixir: "~> 1.5",
elixirc_paths: elixirc_paths(Mix.env()),
compilers: [:phoenix] ++ Mix.compilers(),
start_permanent: Mix.env() == :prod,
aliases: aliases(),
deps: deps()
]
end
def application do
[
mod: {Flowr, []},
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"]
defp deps do
[
{:ecto_sql, "~> 3.0"},
{:postgrex, ">= 0.0.0"},
{:jason, "~> 1.0"},
{:phoenix, "~> 1.6"},
{:phoenix_pubsub, "~> 2.0"},
{:phoenix_ecto, "~> 4.4"},
{:phoenix_html, "~> 3.1", override: true},
{:phoenix_live_reload, "~> 1.3", only: :dev},
{:gettext, "~> 0.11"},
{:plug_cowboy, "~> 2.1"},
{:esbuild, "~> 0.3", runtime: Mix.env() == :dev},
# phx extra
{:phoenix_active_link, "~> 0.3.0"},
{:phoenix_live_view, "~> 0.18"},
{:phoenix_live_dashboard, "~> 0.7"},
{:phoenix_bootstrap_form, "~> 0.1.0"},
# extra
{:ringcentral, "~> 0.2", github: "ringcentral-elixir/ringcentral_elixir"},
{:finch, "~> 0.9"},
{:flow, "~> 1.2.0"},
{:broadway, "~> 1.0"},
{:broadway_dashboard, "~> 0.3.0"},
{:execjs, "~> 2.0"},
{:jaxon, "~> 2.0"},
{:json_xema, "~> 0.1"},
{:ecto_psql_extras, "~> 0.2"},
{:httpoison, "~> 2.0"}
]
end
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"],
"assets.deploy": ["esbuild default --minify", "phx.digest"]
]
end
end