-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmix.exs
More file actions
36 lines (30 loc) · 673 Bytes
/
mix.exs
File metadata and controls
36 lines (30 loc) · 673 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
defmodule Cloud.Mixfile do
use Mix.Project
def project do
[
app: :cloud,
version: "1.0.0",
elixir: "~> 1.4",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps()
]
end
# Configuration for the OTP application
def application do
[extra_applications: [:logger],
mod: {Cloud.Application, []}]
end
# Dependencies can be Hex packages:
defp deps do
[
{:cowboy, "~> 1.1"},
{:plug, "~> 1.4.3"},
{:poison, "~> 3.1"},
{:httpoison, "~> 0.12.0"},
{:socket, "~> 0.3.12"},
{:basic_auth, "~> 2.1"},
{:distillery, "~> 1.4"}
]
end
end