From 2000af53a2e179142f5c7e307cd47c300f7602cd Mon Sep 17 00:00:00 2001 From: Mikel Larreategi Date: Sat, 5 Oct 2024 18:21:33 +0200 Subject: [PATCH] add examples of how to add different features --- .../{{ cookiecutter.__folder_name }}/README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/backend_addon/{{ cookiecutter.__folder_name }}/README.md b/backend_addon/{{ cookiecutter.__folder_name }}/README.md index a138c28..af53ee3 100644 --- a/backend_addon/{{ cookiecutter.__folder_name }}/README.md +++ b/backend_addon/{{ cookiecutter.__folder_name }}/README.md @@ -32,6 +32,22 @@ plonecli add -b .mrbob.ini content_type The command passes the `.mrbob.ini` configuration file to `plonecli` to set some configuration variables which are needed to properly run the subtemplates. +For instance, you could add a behavior to your package running this command: + +```shell +plonecli add -b .mrbob.ini behavior +``` + +Or a controlpanel running this other command: + +```shell +plonecli add -b .mrbob.ini controlpanel +``` + +You can check the list of available subtemplates in the [bobtemplates.plone README file](https://github.com/plone/bobtemplates.plone/?tab=readme-ov-file#provided-subtemplates) + + + ## Contribute - [Issue Tracker](https://github.com/{{ cookiecutter.github_organization }}/{{ cookiecutter.python_package_name }}/issues)