Packages

Track changes to your database with Ecto.

Current section

Files

Jump to
footprint mix.exs
Raw

mix.exs

defmodule Footprint.MixProject do
use Mix.Project
@version "0.1.0"
@github "https://github.com/zven21/footprint"
def project do
[
app: :footprint,
version: @version,
description: "Track all the changes in your database with Ecto.",
elixir: "~> 1.6",
start_permanent: Mix.env() == :prod,
deps: deps(),
package: package()
]
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.0.0", only: :dev},
{:ecto, "~> 2.2"},
{:credo, "~> 0.10.0", only: [:dev, :test], runtime: false}
# {:dep_from_hexpm, "~> 0.3.0"},
# {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"},
]
end
defp package do
[
files: ["lib", "mix.exs", "README.md"],
maintainers: ["zven21"],
licenses: ["MIT"],
links: %{"GitHub" => @github}
]
end
end