-
Notifications
You must be signed in to change notification settings - Fork 2
/
mix.exs
88 lines (76 loc) · 2.04 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
defmodule Plenario.Mixfile do
use Mix.Project
def project do
[
app: :plenario,
version: "0.21.2",
elixir: "~> 1.7",
elixirc_paths: elixirc_paths(Mix.env()),
compilers: [:phoenix, :gettext] ++ Mix.compilers(),
start_permanent: Mix.env() == :prod,
aliases: aliases(),
deps: deps()
]
end
def application do
extras =
if Mix.env() == :prod do
[:sentry, :logger, :runtime_tools]
else
[:logger, :runtime_tools]
end
[
mod: {Plenario.Application, []},
extra_applications: extras
]
end
# Specifies which paths to compile per environment.
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
defp deps do
[
# phoenix stuff
{:phoenix, "~> 1.4"},
{:phoenix_pubsub, "~> 1.1"},
{:phoenix_ecto, "~> 4.0"},
{:ecto_sql, "~> 3.0"},
{:ecto, "~> 3.0", override: true},
{:postgrex, ">= 0.0.0"},
{:phoenix_html, "~> 2.11"},
{:phoenix_live_reload, "~> 1.2", only: :dev},
{:gettext, "~> 0.11"},
{:plug_cowboy, "~> 2.0"},
# database libs
{:geo_postgis, "~> 1.0"},
# auth
{:comeonin, "~> 4.0"},
{:bcrypt_elixir, "~> 1.0"},
{:guardian, "~> 1.0"},
{:canary, "~> 1.1"},
{:canada, "~> 1.0"},
# general utils
{:timex, "~> 3.4"},
{:simple_slug, ">= 0.1.0"},
{:httpoison, "~> 0.13.0", override: true},
{:jason, "~> 1.0"},
{:poison, "~> 3.0", override: true},
{:csv, "~> 2.0"},
{:socrata, ">= 1.0.0"},
# workflow utils
{:gen_stage, "~> 0.14.0"},
{:quantum, "~> 2.2"},
# testing utils
{:mock, "~> 0.3.2", only: [:test, :travis]},
# releases
{:distillery, "~> 2.0"},
{:sentry, "~> 6.4"}
]
end
defp aliases do
[
"ecto.setup": ["ecto.create", "ecto.migrate", "run priv/repo/seeds.exs"],
"ecto.reset": ["ecto.drop", "ecto.setup"],
test: ["ecto.create --quiet", "ecto.migrate", "test"]
]
end
end