Packages

Manage the Elixir application environment within a context

Current section

Files

Jump to
with_env mix.exs
Raw

mix.exs

defmodule WithEnv.MixProject do
use Mix.Project
def project do
[
app: :with_env,
version: "0.0.1",
elixir: "~> 1.7",
start_permanent: Mix.env() == :prod,
package: package(),
description: description(),
deps: deps()
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:ex_doc, ">= 0.0.0", only: :dev},
{:mix_test_watch, "~> 1.0", only: :dev, runtime: false},
{:ex_unit_notifier, "~> 1.0", only: :test}
]
end
defp description do
"Manage the Elixir application environment within a context"
end
defp package do
%{
licenses: ["MIT"],
maintainers: ["Alex Kwiatkowski"],
links: %{"GitHub" => "https://github.com/fremantle-industries/with_env"}
}
end
end