Packages

A way to copy environment variables into the Application config at startup in an Elixir app.

Current section

Files

Jump to
app_env mix.exs
Raw

mix.exs

defmodule AppEnv.MixProject do
use Mix.Project
def project do
[
app: :app_env,
version: "0.1.0",
elixir: "~> 1.6",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
description: description(),
package: package(),
deps: deps(),
name: "AppEnv",
source_url: "https://github.com/nate/app_env"
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[{:ex_doc, "~> 0.19", only: :dev}]
end
defp description do
"A way to copy environment variables into the Application config at startup in an Elixir app."
end
defp package do
[
maintainers: ["Nathan Sutton"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/nate/app_env"}
]
end
end