Current section
Files
Jump to
Current section
Files
ectorm_dashboard
mix.exs
mix.exs
defmodule EctoRM.Dashboard.MixProject do
use Mix.Project
def project do
[
app: :ectorm_dashboard,
version: "0.0.1",
elixir: "~> 1.9",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env() == :prod,
description: description(),
package: package(),
deps: deps(),
name: "EctoRM.Dashboard",
source_url: "https://github.com/abiwinanda/ectorm_dashboard"
]
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.21", only: :dev, runtime: false}
]
end
defp description() do
"EctoRM dashboard. Inspired from Django Admin Site"
end
defp package() do
[
# These are the default files included in the package
files: [
"lib",
"mix.exs",
"README.md",
".formatter.exs"
],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/abiwinanda/ectorm_dashboard"}
]
end
end