> For the complete documentation index, see [llms.txt](https://boomi.markusschmidt.pro/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://boomi.markusschmidt.pro/boomi-console/library/the-workspace/package-workspace.md).

# Components Set Workspace

Packages should have their own directory

I highly recommend using the following directory structure within your project directory to manage Components Sets:

```
<ProjectDir>
+--  Sets
     +-- Lib
          + -- Package01
               : cSet.Jsonc
          + -- Package02
               : cSet.Jsonc
     +-- Work
          + -- Sprint April-01
               : cSet.Jsonc     
          + -- Sprint April-02
               : cSet.Jsonc
```

Create a folder for each package and you use cSet`.JsonC` as the package filename. The package folder serves a a Workspace and all package output will go to this folder with the same name as the package file.

```
> C:\MSBoomi
bc COMP GET -p "DBIntegrationSample\cSet.JsonC"
```

![](https://856602315-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-MJ5pAMZk3evA8VCVuQL%2Fuploads%2Fgit-blob-9c6a02387e5415b66c3ef28393be4165aecea710%2Fimage%20\(12\)%20\(2\).png?alt=media)

{% hint style="info" %}
There is no need to specify the `Sets`, `Lib` or `Work` folder because these names are Default names. You can override the defaults by using the `--SetLibDir` and `--SetDir` options.
{% endhint %}

### Additional folders

Personally, I use two additional folders, which are not *Boomi Commands* related. However, this structure helps me to much better organize my Integration work:

![](https://856602315-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-MJ5pAMZk3evA8VCVuQL%2Fuploads%2Fgit-blob-2515605629a2f21ddec1b05e8c6cab24a98bcb2f%2Fimage%20\(5\)%20\(3\).png?alt=media)

`Doc` takes my Package documentation and `Test` takes all tests, which are in most cases `http` files to test REST or SOAP API of integrate. Of course, you may also store SOAP UI and/or other test in such directory.
