Hex pm

NotFoundRoute

Shows the routes in a (non umbrella) phoenix app with a live filter through all routes. This is only enabled in :dev mode

search

Needed to run:

Install

Add to mix.exs

def deps do
  # ...
  {:not_found_route, "0.0.2"}
end

In lib/my_app_web/router.ex

defmodule MyAppWeb.Router do
  # ...
  import NotFoundRouteWeb.Router
  # ...

  # Add this as last route in the "/" scope
  live_not_found()
end