Skip to content

Commit

Permalink
Tau - run file_system and os_mon OTP applications in dev mode
Browse files Browse the repository at this point in the history
  • Loading branch information
samaaron committed Dec 2, 2022
1 parent c16b4f9 commit 12a1d20
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion app/server/beam/tau/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@ defmodule Tau.MixProject do

# Run "mix help compile.app" to learn about applications.
def application do
[mod: {Tau.Application, []}, extra_applications: [:logger, :runtime_tools]]
if Mix.env() == :dev do
[mod: {Tau.Application, []}, extra_applications: [:logger, :runtime_tools, :file_system, :os_mon]]
else
[mod: {Tau.Application, []}, extra_applications: [:logger, :runtime_tools]]
end
end

# Specifies which paths to compile per environment.
Expand Down

0 comments on commit 12a1d20

Please sign in to comment.