-
Notifications
You must be signed in to change notification settings - Fork 7
/
mix.exs
45 lines (41 loc) · 952 Bytes
/
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
defmodule SignalTower.MixProject do
use Mix.Project
def project do
[
app: :signal_tower,
version: "2.0.0",
elixir: "~> 1.9",
deps: deps(),
releases: releases()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
mod: {SignalTower, []}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:cowboy, "~> 2.6.0"},
{:poison, "~> 4.0.1"},
{:prometheus_ex, "~> 3.0"},
{:elixir_uuid, "~> 1.2"},
{:dialyxir, "~> 1.0", only: [:dev], runtime: false},
{:mix_test_watch, "~> 1.0", only: :dev, runtime: false}
]
end
defp releases do
[
staging: [
include_executables_for: [:unix],
applications: [runtime_tools: :permanent]
],
production: [
include_executables_for: [:unix],
applications: [runtime_tools: :permanent]
]
]
end
end