-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmix.exs
More file actions
36 lines (31 loc) · 780 Bytes
/
Copy pathmix.exs
File metadata and controls
36 lines (31 loc) · 780 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
28
29
30
31
32
33
34
35
36
defmodule Medex.Mixfile do
use Mix.Project
def project do
[app: :medex,
version: "0.1.2",
elixir: "~> 1.1",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps,
description: description,
package: package]
end
def application do
[applications: [:logger, :cowboy, :plug],
mod: {Medex, []}]
end
defp deps do
[{:cowboy, "~> 1.0.0"},
{:plug, "~> 1.0"},
{:consul, ">= 1.0.0", optional: true}]
end
defp description do
"""
Medical Examination - application for register health check callbacks and represent their state via HTTP.
"""
end
defp package do
[maintainers: ["Yury Gargay"],
links: %{"GitHub" => "https://github.com/xerions/medex"}]
end
end