Packages

Automated project configuration with Elixir best practices. Simply run 'mix archive.install hex ironman' once, then in your project run 'mix suit_up'.

Current section

Files

Jump to
ironman mix.exs
Raw

mix.exs

defmodule Ironman.MixProject do
use Mix.Project
def project do
[
app: :ironman,
version: "0.1.0",
elixir: "~> 1.8",
start_permanent: Mix.env() == :prod,
deps: deps(),
package: package(),
source_url: "https://github.com/TheFirstAvenger/ironman",
description: description()
]
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
[
{:earmark, "~> 1.2", only: :dev, runtime: false},
{:ex_doc, "~> 0.19.1", only: :dev, runtime: false}
]
end
defp package do
[
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/TheFirstAvenger/ironman"}
]
end
defp description do
"Coming Soon"
end
end