-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmix.exs
74 lines (69 loc) · 2.09 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
defmodule SonosElixir.MixProject do
use Mix.Project
def project do
[
app: :sonos_elixir,
version: "0.1.0",
elixir: "~> 1.14",
elixir_paths: elixir_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
aliases: aliases(),
deps: deps()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
mod: {Sonos.Supervisor, []},
extra_applications: [:logger, :runtime_tools]
]
end
defp elixir_paths(:test), do: ["lib", "test/support"]
defp elixir_paths(_), do: ["lib"]
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:phoenix, "~> 1.7.14"},
{:phoenix_html, "~> 4.1"},
{:phoenix_live_reload, "~> 1.2", only: :dev},
{:phoenix_live_view, "~> 1.0.0"},
{:phoenix_live_dashboard, "~> 0.8.3"},
{:esbuild, "~> 0.8", runtime: Mix.env() == :dev},
{:tailwind, "~> 0.2", runtime: Mix.env() == :dev},
{:heroicons,
github: "tailwindlabs/heroicons",
tag: "v2.1.1",
sparse: "optimized",
app: false,
compile: false,
depth: 1},
{:gettext, "~> 0.20"},
{:bandit, "~> 1.5"},
{:jason, "~> 1.4"},
{:sweet_xml, "~> 0.7"},
{:elixir_xml_to_map, "~> 3.1"},
{:xml_builder, "~> 2.3.0"},
{:timex, "~> 3.7"},
{:httpoison, "~> 2.2.0"},
{:ecto, "~> 3.12.5"},
{:ecto_sqlite3, "0.18.0"}
# {:exsync, "~>0.4.1", only: :dev},
# {:big_brother_ex, "~> 0.1", only: :dev},
]
end
defp aliases do
[
setup: ["deps.get", "assets.setup", "assets.build"],
"ecto.setup": ["ecto.create", "ecto.migrate", "run priv/repo/seeds.exs"],
"ecto.reset": ["ecto.drop", "ecto.setup"],
# test: ["ecto.create --quiet", "ecto.migrate --quiet", "test"],
"assets.setup": ["tailwind.install --if-missing", "esbuild.install --if-missing"],
"assets.build": ["tailwind sonos_elixir", "esbuild sonos_elixir"],
"assets.deploy": [
"tailwind sonos_elixir --minify",
"esbuild sonos_elixir --minify",
"phx.digest"
]
]
end
end