forked from fracklen/lb_searchex
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmix.exs
More file actions
27 lines (24 loc) · 650 Bytes
/
mix.exs
File metadata and controls
27 lines (24 loc) · 650 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
defmodule LbSearchex.Mixfile do
use Mix.Project
def project do
[app: :lb_searchex,
version: "0.0.2",
elixir: "~> 1.0",
elixirc_paths: ["lib", "web"],
compilers: [:phoenix] ++ Mix.compilers,
deps: deps]
end
def application do
[mod: {LbSearchex, []},
applications: [:phoenix, :cowboy, :logger, :postalex, :dotenv, :jsx, :couchbeam]]
end
defp deps do
[
{:phoenix, "~> 0.7.2"},
{:poison, "~> 1.2", [optional: false, hex: :poison, override: true]},
{:cowboy, "~> 1.0"},
{:exrm, "~> 0.14.16"},
{:postalex, github: "lokalebasen/postalex", tag: "v0.1.7"}
]
end
end