Current section
Files
Jump to
Current section
Files
not_found_route
README.md
README.md
[](https://hex.pm/packages/not_found_route)
# NotFoundRoute
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)
# Install
Add to `mix.exs`
```ex
def deps do
# ...
{:not_found_route, "0.0.2"}
end
```
In `lib/my_app_web/router.ex`
```ex
defmodule MyAppWeb.Router do
# ...
import NotFoundRouteWeb.Router
# ...
# Add this as last route in the "/" scope
live_not_found()
end
```