-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathmix.exs
More file actions
43 lines (37 loc) · 714 Bytes
/
mix.exs
File metadata and controls
43 lines (37 loc) · 714 Bytes
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
defmodule MiniRepo.MixProject do
use Mix.Project
def project() do
[
app: :mini_repo,
version: "0.2.0",
elixir: "~> 1.9",
start_permanent: Mix.env() == :prod,
deps: deps(),
aliases: aliases()
]
end
def application() do
[
extra_applications: [:crypto, :inets, :ssl],
mod: {MiniRepo.Application, []}
]
end
defp deps() do
[
{:hex_core, "~> 0.6.0"},
# plug
{:plug, "~> 1.0"},
{:plug_cowboy, "~> 2.0"},
# s3
{:ex_aws, "~> 2.0"},
{:ex_aws_s3, "~> 2.0"},
{:hackney, "~> 1.9"},
{:jason, "~> 1.0"}
]
end
defp aliases() do
[
test: ["test --no-start"]
]
end
end