Skip to content

Commit 12a1d20

Browse files
committed
Tau - run file_system and os_mon OTP applications in dev mode
1 parent c16b4f9 commit 12a1d20

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

app/server/beam/tau/mix.exs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,11 @@ defmodule Tau.MixProject do
1616

1717
# Run "mix help compile.app" to learn about applications.
1818
def application do
19-
[mod: {Tau.Application, []}, extra_applications: [:logger, :runtime_tools]]
19+
if Mix.env() == :dev do
20+
[mod: {Tau.Application, []}, extra_applications: [:logger, :runtime_tools, :file_system, :os_mon]]
21+
else
22+
[mod: {Tau.Application, []}, extra_applications: [:logger, :runtime_tools]]
23+
end
2024
end
2125

2226
# Specifies which paths to compile per environment.

0 commit comments

Comments
 (0)