I have developed Rasa chatbot with botfront UI. When I run it using " rasa run -m models --enable-api --cors “*” --debug " , Rasa starts on the server ‘http://localhost:5005’ . I want to run this chatbot on a remote server and since the remote server wont be having a browser, my UI would be on my local machine and it will access the bot using http://localhost:5005.
But how do I change the rasa server from default ‘http://localhost:5005’ to ‘http://0.0.0.0:5005’ ? so that my UI can access this server from local machine…?