mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 18:18:55 +00:00
30 lines
620 B
Elixir
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
|