1

I have a project that has a "standard user" and "manager" build configurations. (The code is mostly same but some aspects of the build are different.)

When I'm about to test the application, I need to start both configurations, user and manager. Currently, I do that manually but isn't there a way to start both configurations automatically together?

Borek Bernard
  • 50,745
  • 59
  • 165
  • 240
  • Possible duplicate of [How to combine several run configurations in Intellij together?](http://stackoverflow.com/questions/10604019/how-to-combine-several-run-configurations-in-intellij-together) – radistao Jan 09 '17 at 15:50

1 Answers1

1

You can let one of the configurations start the other one:

enter image description here

maba
  • 47,113
  • 10
  • 108
  • 118
  • Unfortunately, my build configurations are AIR desktop apps and for example if I attempt to start the "manager" configuration from the "user" one, it waits until the "manager" app is closed before the "user" is run. It doesn't start them side by side. – Borek Bernard Sep 22 '14 at 13:50
  • Afaik, it's not possible. – Olli Puljula Sep 23 '14 at 17:43