How to combine two servers?

From what I’ve read from the documentation, it seems like I have to start two servers if I want to have my custom actions so rasa run -m models and another one rasa run actions. But is there a way to combine these two servers so that i can just do rasa run and it will start both?

Hi @asong4211,

I don’t think running it that way is currently supported.

Well, one way to do this is by simply running

rasa run actions&
rasa run -m models
# maybe put this in a script?

Hope that helps.