-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmix.exs
36 lines (32 loc) · 889 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
defmodule ClusterLoadBalancer.MixProject do
use Mix.Project
def project do
[
app: :cluster_load_balancer,
version: "1.0.0",
elixir: "~> 1.7",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
deps: deps(),
description: "Load balance resources in your Elixir cluster (like WebSockets after a rolling deploy)",
package: [
maintainers: ["Steve Bussey"],
licenses: ["MIT"],
links: %{github: "https://github.com/pushex-project/cluster_load_balancer"},
files: ~w(lib) ++ ~w(mix.exs README.md)
]
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
end