millimoose
millimoose

Reputation: 39990

How to set up one-click debugging for an application with multiple processes in WebStorm?

I have an application that requires a bunch of moving parts to run, and I'd like to set things up so WebStorm can launch all of it.

An example of what I need to do:

This presented me with a bunch of problems:

Has anybody managed to get something like this running without actually having to fire up every step on its own?

Upvotes: 0

Views: 82

Answers (1)

lena
lena

Reputation: 93868

No way currently... Using Multirun plugin gives you more flexibility (see https://github.com/rkhmelyuk/multirun/wiki/How-to-run-configurations-with-Multirun), but still you can either run or debug all configurations, there is no way to start one configuration in debugger and run the others. We have a feature request for such option, please follow IDEA-156398 for updates

Upvotes: 2

Related Questions