@collin If you're on Rails 7, or using `ruby/debug`, you can use remote debugging while running all the processes using the Procfile
https://binarysolo.chapter24.blog/remote-debugging-in-rails-7/
This post was extracted and adapted from The Rails and Hotwire Codex. Rails 7 includes the official Ruby debugger. It also uses Foreman to orchestrate multiple processes in development. This way you can run the Rails server along with processes to watch and compile your frontend assets using a single command. Annoyingly, this makes debugging trickier. You can't just add a breakpoint in your app and run commands in the console. The same Terminal window is running multiple processes, so won't...
@collin Yep exactly ... you'd need to use a terminal though, I don't know how to make it work within an editor ...
I'm sure there must be a way but I don't like fiddling with text editors, prefer to just use the command line