forked from includebraga/corker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
53 lines (46 loc) · 1.1 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
defmodule Corker.MixProject do
use Mix.Project
@env Mix.env()
def project do
[
app: :corker,
version: "0.1.0",
elixir: "~> 1.8",
start_permanent: Mix.env() == :prod,
elixirc_paths: elixirc_paths(Mix.env()),
deps: deps()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger],
mod: {Corker.Application, []}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:ecto_sql, "~> 3.0"},
{:postgrex, ">= 0.0.0"},
{:slack, "~> 0.19.0"},
{:timex, "~> 3.1"},
{:yaml_elixir, "~> 2.2"},
{:plug_cowboy, "~> 2.0"},
{:poison, "~> 3.0"},
{:tesla, "~> 1.2"},
{:quantum, "~> 2.3"}
] ++ deps(@env)
end
defp deps(env) when env in [:dev, :test] do
[
{:credo, "~> 1.1.4", runtime: false},
{:ex_machina, "~> 2.3"},
{:faker, "~> 0.11"},
{:mock, "~> 0.3.0"}
]
end
defp deps(_), do: []
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
end