I have a simple Sinatra application. When I launch it (rackup
) locally, and I place a byebug
breakpoint, then I can see and interact with bye bug when that spot is reached in the code.
When I deploy that same app on heroku
, I have problems:
- Using
heroku logs -t
I can see the output of the server as it runs, and when it hits the break point, I can see it but not interact with it. - Using
heroku run irb
I can run an interactive rib session but it is not of the running server.
I think this must be possible but I cannot find it documented anywhere.