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]
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger],
mod: {{app}.Application, []}
]
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, "~> 0.1.0"},
{:plug_cowboy, "~> 2.2"},
{:jason, "~> 1.0"},
{:plug_checkup, "~> 0.6.0"},
{:poison, "~> 4.0"},
{:cors_plug, "~> 2.0"},
{:timex, "~> 3.0"},
{:excoveralls, "~> 0.10", only: :test},
{:ex_unit_sonarqube, "~> 0.1", only: :test},
]
end
end