Shows the routes in a (non umbrella) phoenix app with a live filter through all
routes. This is only enabled in :dev
mode
Needed to run:
- Phoenix > 1.4
- LiveView (only needed for search)
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
Go to a route that is not defined in the router, for example /not-found
where a page comes up with all the routes available in your appp.
Search works for each column, when clicking on a column search will work only for that column.