Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 1.16 KB

README.md

File metadata and controls

27 lines (22 loc) · 1.16 KB

Micro extensions

Extensions available for the Micro framework and links to extensions in the wild.

Using extensions

Using an extension is usually as simple as copying a folder and requiring a an extension name. Consult these steps if you run into problems:

  1. Install the extensions by copying the extension folder and the extension .yml configuration file to your WEB-INF/config/extensions folder. Example:

        extensions/
          ├── cache_admin/ 
          ├── cache_admin.yml
          └── i18N.yml
  
  1. Edit the application.bsh startup controller and require the desired extension, example:
    
     site.ExtensionsManager
         .require("i18N")         // <--
         .require("cache_admin"); // <--
    
  2. restart the app

Extensions