Current section

Files

Jump to
mate mix.exs
Raw

mix.exs

defmodule Mate.MixProject do
use Mix.Project
def project do
[
app: :mate,
version: "0.1.0",
elixir: "~> 1.12",
start_permanent: Mix.env() == :prod,
description: description(),
package: package(),
deps: deps(),
name: "Mate",
source_url: "https://github.com/maxvw/mate"
]
end
defp package() do
[
files: ~w(lib .formatter.exs mix.exs README* LICENSE*),
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/maxvw/mate"}
]
end
defp description() do
"Customisable Deployment for Elixir / Phoenix"
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger, :eex, :crypto]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:ex_doc, "~> 0.24", only: :dev, runtime: false}
# {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}
]
end
end