☁️ Loving our new documentation website? Provide feedback in the CloudCannon Community! ✨

include_developer_files

Table of contents

Description:

This key toggles whether CloudCannon removes developer files from your Collection browser. CloudCannon excludes files that probably shouldn't be edited in a CMS from your Collection browser, for example files like README.md or package.json. CloudCannon excludes these files even if you have configured globs to allow them.

Setting this key to true will allow CloudCannon to show developer files, assuming they are not filtered out by any configured globs.

Appears in:
└── collections_config
    └── *
        └── include_developer_files
Type:
boolean
Default value:
false
Examples:

In this example, we want to see developer files in the Collection browser for the data Collection.

Copied to clipboard
collections_config:
  data:
    include_developer_files: true
{
  "collections_config": {
    "data": {
      "include_developer_files": true
    }
  }
}
Open in a new tab