How to multiple Rasa Commands in Shell Script

Hi, i want to rasa commands in shell script.

rasa run --model models --enable-api --cors “*” --debug
-p $PORT

The challenge im facing is that im not able to run rasa run actions command together with the above command.

Im using this tutorial for refference Deploying Rasa Chatbot on Heroku Using Docker | by DLMade | Analytics Vidhya | Medium

Thank you in advance

Hi @kkiarie. You can run multiple commands in a shell script by adding the “&” operator in between the commands.

Hi Juste, thanks so so much. it works perfect!

1 Like