View Source RefInspector.Supervisor (RefInspector v2.0.0)

This supervisor module takes care of starting the required database storage processes. It is automatically started with the :ref_inspector application.

If you do not want to automatically start the application itself you can adapt your configuration for a more manual supervision approach.

Instead of adding :ref_inspector to your :applications list or using the automatic discovery you need to add it to your :included_applications:

def application do
  [
    included_applications: [
      # ...
      :ref_inspector,
      # ...
    ]
  ]
end

That done you can add RefInspector.Supervisor to your hierarchy:

children = [
  # ...
  RefInspector.Supervisor,
  # ..
]

Link to this section Summary

Functions

Returns a specification to start this module under a supervisor.

Link to this section Functions

Returns a specification to start this module under a supervisor.

See Supervisor.