> ## Documentation Index
> Fetch the complete documentation index at: https://doc.lucidworks.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Apps filter

[old doc.lw link]: https//doc.lucidworks.com/fusion/5.9/7p74hf

[localhost link]: http://localhost:3000/docs/5/fusion/operations/config-sync/filters/apps-filter

[mintlify link]: https://doc.lucidworks.com/docs/5/fusion/operations/config-sync/filters/apps-filter

You can configure which apps to synchronize using the `sync.apps` config setting in the `fusion-config-sync` section of the Helm chart.
Apps can either be excluded or included.
For instance, to exclude application `app1` from synchronization, use the following configuration:
import { LwTemplate } from '/snippets/LwTemplate.jsx';

<LwTemplate />

```yaml wrap  theme={"dark"}
cfg:
  sync:
    apps: "-app1"
```

To include only `app1` and `app2` for synchronization, use the following

```yaml wrap  theme={"dark"}
cfg:
  sync:
    apps: "app1,app2"
```

To include all apps for synchronization, use the following

```yaml wrap  theme={"dark"}
cfg:
  sync:
    apps: "*"
```
