Files
firezone/mix.exs
Jamil Bou Kheir ee866c2cf2 First rename
2020-05-11 16:18:57 -05:00

38 lines
869 B
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,
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
[]
end
end