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
125 lines (119 loc) · 3.67 KB
/
mix.exs
File metadata and controls
125 lines (119 loc) · 3.67 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
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(),
docs: docs(),
test_coverage: [tool: ExCoveralls]]
end
# Configuration for the OTP application.
#
# Type `mix help compile.app` for more information.
def application do
[
mod: {CodeCorps, []},
applications: [
:bamboo,
: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,
:timber,
:timex_ecto
]
]
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
[
{:bamboo, "~> 0.7"}, # emails
{:phoenix, "~> 1.2.1"},
{:phoenix_pubsub, "~> 1.0"},
{:phoenix_ecto, "~> 3.0"},
{:postgrex, ">= 0.0.0"},
{:phoenix_html, "~> 2.8"},
{:phoenix_live_reload, "~> 1.0", only: :dev},
{:gettext, "~> 0.12"},
{:cowboy, "~> 1.0"},
{:arc, "~> 0.6"}, # Photo uploads
{:arc_ecto, "~> 0.5"},
{:benchfella, "~> 0.3.0", only: :dev},
{:canary, "~> 1.1"}, # Authorization
{:comeonin, "~> 2.0"},
{:corsica, "~> 0.4"}, # CORS
{:credo, "~> 0.5", only: [:dev, :test]}, # Code style suggestions
{:earmark, "~> 1.0"}, # Markdown rendering
{:ex_aws, "~> 1.0"}, # Amazon AWS
{:excoveralls, "~> 0.5", only: :test}, # Test coverage
{:ex_doc, "~> 0.14", 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.8"},
{:ja_resource, "~> 0.2"},
{: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, "~> 0.1"}, # Segment analytics
{:sentry, "~> 2.0"}, # Sentry error tracking
{:stripity_stripe, git: "https://github.com/code-corps/stripity_stripe.git", branch: "2.0"}, # Stripe
{:sweet_xml, "~> 0.5"},
{:timber, "~> 0.4"}, # Logging
{:timex, "~> 3.0"},
{:timex_ecto, "~> 3.0"},
{:ecto_ordered, "0.2.0-beta1"}
]
end
defp docs do
[
extras: [
"README.md": [title: "README"],
"LICENSE.md": [title: "LICENSE"]
],
main: "README",
source_url: "https://github.com/code-corps/code-corps-api/doc"
]
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"],
"ecto.migrate": ["ecto.migrate", "ecto.dump"],
"ecto.rollback": ["ecto.rollback", "ecto.dump"],
"test": ["ecto.create --quiet", "ecto.migrate", "test"]]
end
end