Table of Contents
Set of the Umbraco Examine tweaks and hacks.
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
See instructions for Backend setup.
See deployment for notes on how to deploy the project on a live system.
In Web.config set those configurations:
- Enabling package (default false):
<add key="Cogworks.Examine.Tweaks.Enabled" value="true" />
- Enabling custom PublishedContent value set builder (default is true):
<add key="Cogworks.Examine.Tweaks.UsePublishedContentCustomValueSetBuilder" value="true" />
- Enabling custom Content value set builder (default is true):
<add key="Cogworks.Examine.Tweaks.UseContentCustomValueSetBuilder" value="true" />
- Disabling Internal index (default false):
<add key="Cogworks.Examine.Tweaks.InternalIndexDisabled" value="true" />
- Disabling External index (default false):
<add key="Cogworks.Examine.Tweaks.ExternalIndexDisabled" value="true" />
- Internal included item types comma separated (if not in use remove setting - not empty value)
<add key="Cogworks.Examine.Tweaks.InternalIncludedItemTypes" value="testPage,anotherTestPage" />
- Internal excluded item types comma separated (if not in use remove setting - not empty value)
<add key="Cogworks.Examine.Tweaks.InternalExcludedItemTypes" value="testPage,anotherTestPage" />
- External included item types comma separated (if not in use remove setting - not empty value)
<add key="Cogworks.Examine.Tweaks.ExternalIncludedItemTypes" value="testPage,anotherTestPage" />
- External excluded item types comma separated (if not in use remove setting - not empty value)
<add key="Cogworks.Examine.Tweaks.ExternalExcludedItemTypes" value="testPage,anotherTestPage" />
All the information required for the proper project deployments are located inside of the Deployment.md file in the Docs directory. Please go there if you're about to perform any new release of the project.
All notable changes to this project can be found in CHANGELOG.md.
- Umbraco - CMS
- GitHub Actions - DevOps and changelog generator