-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
61 lines (58 loc) · 1.65 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
defmodule LivePremier.MixProject do
use Mix.Project
def project do
[
app: :live_premier,
version: "0.1.0",
elixir: "~> 1.13",
start_permanent: Mix.env() == :prod,
deps: deps(),
name: "LivePremier",
source_url: "https://github.com/kevinschweikert/live_premier",
homepage_url: "https://github.com/kevinschweikert/live_premier",
docs: [
authors: ["Kevin Schweikert"],
main: LivePremier,
groups_for_modules: [
"System commands": [
LivePremier.System,
LivePremier.System.Info,
LivePremier.System.Version
],
"Screen commands": [
LivePremier.Screen,
LivePremier.Screen.Info,
LivePremier.Screen.LayerInfo,
LivePremier.Screen.LayerStatus
]
],
groups_for_docs: [System: &(&1[:module] == :system), Screen: &(&1[:module] == :screen)],
nest_modules_by_prefix: [
LivePremier.System,
LivePremier.System.Info,
LivePremier.System.Version,
LivePremier.Screen,
LivePremier.Screen.Info,
LivePremier.Screen.LayerInfo,
LivePremier.Screen.LayerStatus
]
]
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:credo, "~> 1.7", only: [:dev, :test], runtime: false},
{:ecto, "~> 3.11"},
{:ex_doc, "~> 0.35.1", only: [:dev]},
{:plug, "~> 1.0", only: [:test]},
{:req, "~> 0.5"}
]
end
end