How to run multiple rasa projects on the same pc & how to change a default port number in a RASA WebHook API POST method? It is possible do it?

I want to change this port number in RASA. it is possible to do it & how can I do it?

Hi @DilrukshiRajapakshe

If you want to change the port of the action server you can use:

rasa run actions -p PORT

If you want to change the port for the Rasa rest api you can use:

rasa run --enable-api -p PORT

Thank you