Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,18 @@ defmodule ObserverCli.MixProject do
description: "observer in shell",
deps: [
{:recon, "~> 2.5.6"}
],
]
]
end

def application do
[
env: [
# {:formatter, #{
# :application => atom(), - Formatter application. observer_cli loads all it's modules to remote node.
# :mod => module() - observer_cli_formatter implementation.
# }}
formatter: %{application: :observer_cli, mod: :observer_cli_formatter_default},
# scheduler_usage: :enable, # default value is 'disable', uncomment to enable by default
plugins: [
# module - Specific module implements plugin behavior. It's mandatory.
Expand All @@ -24,5 +34,5 @@ defmodule ObserverCli.MixProject do
]
]
]
end
end
end