Created by




Add live_debugger to your list of dependencies in mix.exs :
defp deps do
[
{:live_debugger, "~> 0.4.0", only: :dev}
]
endAdd a line to your application root layout. It attaches meta tag and LiveDebugger scripts.
# lib/my_app_web/components/layouts/root.html.heex
<head>
<%= Application.get_env(:live_debugger, :live_debugger_tags) %>
</head>After you start your application, LiveDebugger will be running at a default port http://localhost:4007.
LiveDebugger has Igniter support. It'll automatically add LiveDebugger dependency and modify your root.html.heex after you use the below command.
mix igniter.install live_debuggerLiveDebugger v0.4.0
or