Current section
Files
Jump to
Current section
Files
priv/templates/structure/mix.exs
defmodule {app}.MixProject do
use Mix.Project
def project do
[
app: :{app_snake},
version: "0.1.0",
elixir: "~> 1.13",
start_permanent: Mix.env() == :prod,
deps: deps(),
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
"ca.release": :test,
"ca.sobelow.sonar": :test,
coveralls: :test,
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :test,
"coveralls.xml": :test,
credo: :test,
release: :prod,
sobelow: :test,
],
releases: [
{app_snake}: [
include_executables_for: [:unix],
steps: [:assemble, :tar]
]
],
metrics: {metrics}
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger],
mod: {{app}.Application, [Mix.env()]}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:castore, "~> 1.0"},
{:plug_cowboy, "~> 2.7"},
{:jason, "~> 1.4"},
{:plug_checkup, "~> 0.6"},
{:poison, "~> 6.0"},
{:cors_plug, "~> 3.0"},
{:timex, "~> 3.7"},
# Test
{:mock, "~> 0.3", only: :test},
{:excoveralls, "~> 0.18", only: :test},
# Release
{plugin-dependency}
]
end
end