Current section

Files

Jump to
elixir_structure_manager priv templates structure mix.exs
Raw

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: [
coveralls: :test,
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :test,
"coveralls.xml": :test
],
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
[
# {:dep_from_hexpm, "~> 0.3.0"},
# {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}
{:castore, "~> 1.0", override: true},
{:plug_cowboy, "~> 2.0"},
{:jason, "~> 1.4"},
{:plug_checkup, "~> 0.6"},
{:poison, "~> 5.0"},
{:cors_plug, "~> 3.0"},
{:timex, "~> 3.0"},
{:excoveralls, "~> 0.18", only: :test},
]
end
end