Development#
The development of this add-on is done in isolation using a new approach using pnpm workspaces and latest mrs-developer and other Plone core improvements.
For this reason, it only works with pnpm and Volto 18 (currently in alpha).
Prerequisites ✅#
An operating system that runs all the requirements mentioned.
Docker (optional)
Installation 🔧#
Clone this repository, then change your working directory.
git clone git@github.com:collective/collective.volto.turnstile.git cd collective.volto.turnstile
Install this code base.
make install
Add features using plonecli or bobtemplates.plone#
This package provides markers as strings (<!-- extra stuff goes here -->) that are compatible with plonecli and bobtemplates.plone.
These markers act as hooks to add all kinds of subtemplates, including behaviors, control panels, upgrade steps, or other subtemplates from plonecli.
To run plonecli with configuration to target this package, run the following command.
make add <template_name>
For example, you can add a content type to your package with the following command.
make add content_type
You can add a behavior with the following command.
make add behavior
See also:#
You can check the list of available subtemplates in the bobtemplates.plone README.md file.
See also the documentation of Mockup and Patternslib for how to build the UI toolkit for Classic UI.