-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
41 lines (37 loc) · 767 Bytes
/
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
defmodule Bob.Mixfile do
use Mix.Project
def project() do
[
app: :bob,
version: "0.0.1",
elixir: "~> 1.8",
start_permanent: Mix.env() == :prod,
build_embedded: Mix.env() == :prod,
releases: releases(),
deps: deps()
]
end
def application() do
[
mod: {Bob.Application, []},
extra_applications: [:logger, :runtime_tools]
]
end
defp deps() do
[
{:ex_aws_s3, "~> 2.0"},
{:hackney, "~> 1.11"},
{:jason, "~> 1.1"},
{:plug_cowboy, "~> 2.0"},
{:porcelain, "~> 2.0"},
{:rollbax, "~> 0.11.0"},
{:sweet_xml, "~> 0.5"},
{:logster, "~> 1.0"}
]
end
defp releases() do
[
bob: [include_executables_for: [:unix]]
]
end
end