-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmix.exs
50 lines (47 loc) · 1.05 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
defmodule Slacktapped.Mixfile do
use Mix.Project
def project do
[
app: :slacktapped,
build_embedded: Mix.env == :prod,
deps: deps(),
docs: [extras: [
"README.md": [path: "readme", title: "Readme"]
]],
elixir: "~> 1.6",
homepage_url: "http://slacktapped.com",
name: "Slacktapped",
source_url: "https://github.com/nicksergeant/slacktapped",
start_permanent: Mix.env == :prod,
version: "1.0.0",
]
end
def application do
[
applications: [
:beersearch,
:cowboy,
:httpotion,
:logger,
:plug,
:quantum,
:redix
],
mod: {Slacktapped, []}
]
end
defp deps do
[
{:beersearch, "~> 0.0.9"},
{:cowboy, "~> 2.7.0"},
{:ex_doc, "~> 0.12", only: :dev},
{:httpotion, "~> 3.1.0"},
{:mix_test_watch, "~> 0.2", only: :dev},
{:plug, "~> 1.10"},
{:plug_cowboy, "~> 2.2.1"},
{:poison, "~> 4.0.1"},
{:redix, ">= 0.8.1"},
{:quantum, "~> 2.3"}
]
end
end