forked from code-corps/code-corps-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmix.exs
More file actions
102 lines (97 loc) · 3.15 KB
/
mix.exs
File metadata and controls
102 lines (97 loc) · 3.15 KB
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
defmodule CodeCorps.Mixfile do
use Mix.Project
def project do
[app: :code_corps,
version: "0.0.1",
elixir: "1.3.4",
elixirc_paths: elixirc_paths(Mix.env),
compilers: [:phoenix, :gettext] ++ Mix.compilers,
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
aliases: aliases(),
deps: deps(),
test_coverage: [tool: ExCoveralls]]
end
# Configuration for the OTP application.
#
# Type `mix help compile.app` for more information.
def application do
[
mod: {CodeCorps, []},
applications: [
:phoenix,
:phoenix_pubsub,
:phoenix_html,
:cowboy,
:logger,
:gettext,
:phoenix_ecto,
:postgrex,
:arc_ecto,
:comeonin,
:corsica,
:earmark,
:ex_aws,
:httpoison,
:ja_resource,
:scrivener_ecto,
:segment,
:sentry,
:stripity_stripe
]
]
end
# Specifies which paths to compile per environment.
defp elixirc_paths(:test), do: ["lib", "web", "test/support"]
defp elixirc_paths(_), do: ["lib", "web"]
# Specifies your project dependencies.
#
# Type `mix help deps` for examples and options.
defp deps do
[
{:phoenix, "~> 1.2.1"},
{:phoenix_pubsub, "~> 1.0"},
{:phoenix_ecto, "~> 3.0"},
{:postgrex, ">= 0.0.0"},
{:phoenix_html, "~> 2.6"},
{:phoenix_live_reload, "~> 1.0", only: :dev},
{:gettext, "~> 0.11"},
{:cowboy, "~> 1.0"},
{:arc, git: "https://github.com/stavro/arc.git", ref: "354d4d2e1b86bcd6285db3528118fe3f5db36cf5", override: true}, # Photo uploads
{:arc_ecto, "~> 0.4.4"},
{:benchfella, "~> 0.3.0", only: :dev},
{:canary, "~> 1.0"}, # Authorization
{:comeonin, "~> 2.0"},
{:corsica, "~> 0.4"}, # CORS
{:credo, "~> 0.4", only: [:dev, :test]}, # Code style suggestions
{:earmark, "~> 1.0"}, # Markdown rendering
{:ex_aws, "~> 0.4"}, # Amazon AWS
{:excoveralls, "~> 0.5", only: :test}, # Test coverage
{:ex_doc, "~> 0.13", only: [:dev, :test]},
{:ex_machina, "~> 1.0", only: :test}, # test factories
{:guardian, "~> 0.13"}, # Authentication (JWT)
{:hackney, ">= 1.4.4"},
{:inch_ex, "~> 0.5", only: [:dev, :test]}, # Inch CI
{:inflex, "~> 1.7.0"},
{:ja_resource, "~> 0.1.0"},
{:ja_serializer, "~> 0.11.0"}, # JSON API
{:mix_test_watch, "~> 0.2", only: :dev}, # Test watcher
{:poison, "~> 2.0"},
{:scrivener_ecto, "~> 1.0"}, # DB query pagination
{:segment, github: "stueccles/analytics-elixir"}, # Segment analytics
{:sentry, "~> 1.0"}, # Sentry error tracking
{:stripity_stripe, "~> 2.0.0-alpha.1"} # Stripe
]
end
# Aliases are shortcuts or tasks specific to the current project.
# For example, to create, migrate and run the seeds file at once:
#
# $ mix ecto.setup
#
# See the documentation for `Mix` for more info on aliases.
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