Current section
Files
Jump to
Current section
Files
mix.exs
defmodule Alix.MixProject do
use Mix.Project
def project do
[
app: :alix,
version: "0.1.0",
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
description: description(),
deps: deps(),
name: "Alix",
package: package(),
source_url: "https://github.com/jsolana/alix",
homepage_url: "https://github.com/jsolana/alix",
docs: docs()
]
end
defp description() do
"An example of library in elixir"
end
defp package() do
%{
licenses: ["Apache-2.0"],
maintainers: ["Javi Solana"],
links: %{"GitHub" => "https://github.com/dashbitco/broadway"}
}
end
defp docs() do
[
main: "Alix", # The main page in the docs
logo: "guides/logo.png",
extras: ["README.md", "LICENSE", "guides/documentation.md"]
]
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
[
{:ex_doc, "~> 0.29", only: :dev, runtime: false}
]
end
end