-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathmix.exs
48 lines (41 loc) · 1.09 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
defmodule ReverseProxy.Mixfile do
use Mix.Project
def project do
[app: :reverse_proxy,
version: "0.3.1",
elixir: "~> 1.0",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps(),
name: "ReverseProxy",
description: description(),
package: package(),
docs: [extras: ["README.md"],
main: "readme"],
test_coverage: [tool: ExCoveralls]]
end
def application do
[applications: [:logger, :plug, :cowboy, :httpoison],
mod: {ReverseProxy, []}]
end
defp deps do
[{:plug, "~> 1.2"},
{:cowboy, "~> 1.0"},
{:httpoison, "~> 0.9"},
{:earmark, "~> 1.0", only: :dev},
{:ex_doc, "~> 0.14", only: :dev},
{:credo, "~> 0.5", only: [:dev, :test]},
{:excoveralls, "~> 0.5", only: :test},
{:dialyze, "~> 0.2", only: :test}]
end
defp description do
"""
A Plug based reverse proxy server.
"""
end
defp package do
%{maintainers: ["Shane Logsdon"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/slogsdon/elixir-reverse-proxy"}}
end
end