Current section
Files
Jump to
Current section
Files
mix.exs
defmodule Krueger.MixProject do
use Mix.Project
defp package() do
[
# This option is only needed when you don't want to use the OTP application name
name: "krueger",
# These are the default files included in the package
files: ~w(lib .formatter.exs mix.exs README* LICENSE*),
licenses: ["MIT"],
links: %{
"GitHub" => "https://github.com/ElioenaiFerrari/krueger",
"Docker" => "https://hub.docker.com/repository/docker/elioenaiferrari/krueger"
}
]
end
def project do
[
app: :krueger,
version: System.get_env("VERSION", "1.0.3"),
elixir: "~> 1.14-dev",
start_permanent: Mix.env() == :prod,
deps: deps(),
name: "krueger",
description:
"A lazy application lifter like serveless or services with free plans and also shows the status returned",
source_url: "https://github.com/ElioenaiFerrari/krueger",
package: package()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger],
mod: {Krueger.Application, []}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
# {:dep_from_hexpm, "~> 0.3.0"},
# {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"},
{:httpoison, "~> 1.8"},
{:ex_doc, "~> 0.28.4", only: :dev, runtime: false}
]
end
end