Development docker
This commit is contained in:
@@ -14,7 +14,7 @@ defmodule NeonVertigoService.MixProject do
|
||||
# Run "mix help compile.app" to learn about applications.
|
||||
def application do
|
||||
[
|
||||
extra_applications: [:logger],
|
||||
extra_applications: extra_applications(Mix.env()),
|
||||
mod: {NeonVertigoService, []}
|
||||
]
|
||||
end
|
||||
@@ -28,4 +28,7 @@ defmodule NeonVertigoService.MixProject do
|
||||
# {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}
|
||||
]
|
||||
end
|
||||
|
||||
defp extra_applications(:prod), do: [:logger]
|
||||
defp extra_applications(_dev), do: extra_applications(:prod) ++ [:wx, :observer]
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user