Hello. I have some questions regarding the rasa x integration with Git. The problem is, I installed rasa x on a server and I linked my github repository following the instructions of the video of Rasa Masterclass and it works. As I understand, the repository has to have the following form
├── actions.py
├── config.yml
├── data
│ ├── nlu.md
│ └── stories.md
├── domain.yml
├── endpoints.yml
But I want to link rasa x with a repository with the following form
├── actions
│ ├── actions.py
│ ├── Dockerfile
│ ├── init.py
├── app
│ ├── Dockerfile
│ ├── server.py
├── mongo
│ ├── Dockerfile
│ └── init-mongo.js
├── rasa
│ ├── config.yml
│ ├── data
│ │ ├── nlu.md
│ │ └── stories.md
│ ├── endpoints.yml
│ ├── Dockerfile
│ ├── domain.yml
├── README.md
└── docker-compose.yml
As you can see, the rasa files are inside a subdirectory. Is there a way to do this? I’m just starting with rasa and I’ll appreciate your help. Thanks in advance!