Packages

A pre-configured postgres docker-compose stack definition for integration testing with the divo library.

Current section

Files

Jump to
Raw

mix.exs

defmodule DivoPostgres.MixProject do
use Mix.Project
@github "https://github.com/UrbanOS-Public/divo_postgres_db"
def project do
[
app: :divo_postgres_db,
version: "1.0.0",
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
deps: deps(),
docs: docs(),
package: package(),
description: description(),
source_url: @github,
homepage_url: @github
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:divo, "~> 2.0"},
{:ex_doc, "~> 0.23", only: :dev}
]
end
defp description do
"A pre-configured postgres docker-compose stack definition for
integration testing with the divo library."
end
defp package do
[
maintainers: ["smartcitiesdata"],
licenses: ["Apache 2.0"],
links: %{"GitHub" => @github}
]
end
defp docs do
[
source_url: @github,
extras: ["README.md"],
source_url_pattern: "#{@github}/blob/master/%{path}#L%{line}"
]
end
end