Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 475 Bytes

parent_configuration.md

File metadata and controls

14 lines (12 loc) · 475 Bytes

Parent Configuration

There are a few parent application settings when dealing with modules. In your ColdBox.cfc you can have a modules structure with some configuration settings.

modules = {
    // reload and unload modules in every request
    autoReload = false,
    // An array or list of the module names that will load ONLY
    include = [],
    // An array or list of the module names that will be EXCLUDED
    exclude = ["paidModule1","paidModule2"]
};