Debug Phoenix Application
In order to debug an Elixir Phoenix application you need to start the app with iex
this way:
iex -S mix phx.server
Then you can add this line into your code to add a new debug break point:
require IEx; IEx.pry
Tweet