Files
firezone/mix.exs
Jamil Bou Kheir f8cf5dd136 Add coverage badge
2020-06-02 19:40:04 -07:00

47 lines
1.1 KiB
Elixir

defmodule FireguardUmbrella.MixProject do
@moduledoc """
Welcome to the FireGuard Elixir Umbrella Project
"""
use Mix.Project
def project do
[
apps_path: "apps",
version: "0.1.0",
start_permanent: Mix.env() == :prod,
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
coveralls: :test,
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :test
],
deps: deps(),
releases: [
fg_http: [
applications: [fg_http: :permanent],
include_executables_for: [:unix],
cookie: System.get_env("ERL_COOKIE")
],
fg_wall: [
applications: [fg_wall: :permanent],
include_executables_for: [:unix],
cookie: System.get_env("ERL_COOKIE")
]
]
]
end
# Dependencies listed here are available only for this
# project and cannot be accessed from applications inside
# the apps folder.
#
# Run "mix help deps" for examples and options.
defp deps do
[
{:excoveralls, "~> 0.13", only: :test}
]
end
end