forked from kieraneglin/encrypted_secrets_ex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
40 lines (35 loc) · 833 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
defmodule EncryptedSecrets.MixProject do
use Mix.Project
def project do
[
app: :encrypted_secrets,
version: "0.2.4",
elixir: "~> 1.5",
description: description(),
package: package(),
source_url: "https://github.com/kieraneglin/encrypted_secrets_ex",
start_permanent: Mix.env() == :prod,
deps: deps()
]
end
def application do
[
extra_applications: [:logger, :crypto]
]
end
defp deps do
[
{:ex_doc, "~> 0.22", only: :dev, runtime: false},
{:yaml_elixir, "~> 2.5"}
]
end
defp description() do
"A package that allows you to store encrypted application secrets in your VCS"
end
defp package() do
[
licenses: ["MIT"],
links: %{repo: "https://github.com/kieraneglin/encrypted_secrets_ex"}
]
end
end