Is it possible to manager multiple foders in one project

Hi

I’ve got one project which is my website.
I have several modules in the website so I have a json language file per module.
Is it possible to have all the module in the same project to be able to manage and search in all the files from one place?

Thank you for your help
Franck

Yes, absolutely. You can have multiple files in different folders uploaded to the same project.

You can include files by their exact path or by using standard path wildcards ? (single character), * (anything except path separator), ** (anything including path separators).

You can control files you want to upload with exclusion rules and conditions.

Example:

  "upload": {
    "type": "json",
    "files": "modules/**/en.json"
  }
 
}

The above configuration will scan for files named en.json in all subfolders of the modules folder.