Files
firezone/mix.exs
2020-04-23 21:46:47 -07:00

30 lines
620 B
Elixir

defmodule CloudfireUmbrella.MixProject do
use Mix.Project
def project do
[
apps_path: "apps",
version: "0.1.0",
start_permanent: Mix.env() == :prod,
deps: deps(),
releases: [
cf_phx: [
applications: [cf_phx: :permanent]
],
system_engine: [
applications: [system_engine: :permanent]
]
]
]
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