forked from ksheurs/peerage_ec2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmix.exs
More file actions
48 lines (43 loc) · 1.24 KB
/
mix.exs
File metadata and controls
48 lines (43 loc) · 1.24 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
defmodule Peerage.Via.Ec2.Mixfile do
use Mix.Project
def project do
[app: :peerage_ec2,
version: "1.0.0",
elixir: "~> 1.5",
start_permanent: Mix.env == :prod,
deps: deps(),
name: "Peerage EC2",
package: package(),
description: description(),
source_url: "https://github.com/BoweryFarming/peerage_ec2",
homepage_url: "https://github.com/BoweryFarming/peerage_ec2",
docs: [main: "readme", extras: ["README.md"]]]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:ex_aws, "~> 1.1"},
{:ex_doc, "~> 0.18.1", only: :dev, runtime: false},
{:hackney, "~> 1.10"},
{:sweet_xml, "~> 0.6.5"},
]
end
def package do
[files: ["lib", "mix.exs", "README*"],
maintainers: ["Kevin Sheurs", "Dylan Fareed", "Henry Sztul"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/BoweryFarming/peerage_ec2",
"Docs" => "https://hexdocs.pm/peerage_ec2/readme.html"}]
end
def description do
"""
A Peerage provider for easy clustering on AWS EC2 and Elastic Beanstalk
"""
end
end