I wish to pause in an interactive ruby shell with debugger (or binding.pry or byebug) when running an app with Shopify CLI 3.0
Running the app with npm run dev, creates two processes with Vite (frontend and backend) I see all the logs.
When I put a debugger in a ruby file, it does stop the execution at that point but I can’t interact with it as I’m seeing logs. I wish to interact at that point. How can this be achieved ?
Thank you!