-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmix.exs
More file actions
67 lines (59 loc) · 1.54 KB
/
mix.exs
File metadata and controls
67 lines (59 loc) · 1.54 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
defmodule Forage.MixProject do
use Mix.Project
@version "0.7.0"
def project do
[
app: :forage,
version: @version,
elixir: "~> 1.7",
start_permanent: Mix.env() == :prod,
description: description(),
package: package(),
deps: deps(),
aliases: aliases(),
elixirc_paths: elixirc_paths(Mix.env()),
preferred_cli_env: [test: :test]
]
end
defp elixirc_paths(:test), do: ["lib", "test/support_web", "test/support"]
defp elixirc_paths(_), do: ["lib"]
# 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
[
{:ecto, "~> 3.0"},
{:phoenix_html, "~> 3.0"},
{:json, ">= 0.0.0"},
{:paginator, "~> 1.0"},
# Dev and test dependencies
{:jason, ">= 0.0.0", only: :test},
{:phoenix, "~> 1.6", only: :test},
{:gettext, "~> 0.19", only: :test},
{:floki, ">= 0.0.0", only: :test},
{:ex_doc, "~> 0.23", only: [:dev, :test]},
{:makeup_eex, "> 0.0.0", only: [:dev, :test]},
{:ecto_sqlite3, ">= 0.0.0"}
]
end
defp description() do
"Dynamic ecto query builder"
end
defp package() do
[
# This option is only needed when you don't want to use the OTP application name
name: "forage",
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/tmbb/forage"}
]
end
defp aliases() do
[
publish: "run scripts/publish.exs"
]
end
end