Name | kitconcept.core JSON |
Version |
1.0.0a12
JSON |
| download |
home_page | None |
Summary | Core setup for kitconcept GmbH distributions built on top of Plone |
upload_time | 2025-07-10 10:42:43 |
maintainer | None |
docs_url | None |
author | None |
requires_python | ==3.12.* |
license | None |
keywords |
cms
plone
python
|
VCS |
 |
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# kitconcept.core
Core setup for kitconcept GmbH distributions built on top of Plone
## Features
TODO: List our awesome features
## Installation
Install kitconcept.core with uv.
```shell
uv add kitconcept.core
```
Create the Plone site.
```shell
make create-site
```
## Contribute
- [Issue tracker](https://github.com/kitconcept/kitconcept-core/issues)
- [Source code](https://github.com/kitconcept/kitconcept-core/)
### Prerequisites ✅
- An [operating system](https://6.docs.plone.org/install/create-project-cookieplone.html#prerequisites-for-installation) that runs all the requirements mentioned.
- [uv](https://6.docs.plone.org/install/create-project-cookieplone.html#uv)
- [Make](https://6.docs.plone.org/install/create-project-cookieplone.html#make)
- [Git](https://6.docs.plone.org/install/create-project-cookieplone.html#git)
- [Docker](https://docs.docker.com/get-started/get-docker/) (optional)
### Installation 🔧
1. Clone this repository.
```shell
git clone git@github.com:kitconcept/kitconcept-core.git
cd kitconcept-core/backend
```
2. Install this code base.
```shell
make install
```
### Add features using `plonecli` or `bobtemplates.plone`
This package provides markers as strings (`<!-- extra stuff goes here -->`) that are compatible with [`plonecli`](https://github.com/plone/plonecli) and [`bobtemplates.plone`](https://github.com/plone/bobtemplates.plone).
These markers act as hooks to add all kinds of features through subtemplates, including behaviors, control panels, upgrade steps, or other subtemplates from `bobtemplates.plone`.
`plonecli` is a command line client for `bobtemplates.plone`, adding autocompletion and other features.
To add a feature as a subtemplate to your package, use the following command pattern.
```shell
make add <template_name>
```
For example, you can add a content type to your package with the following command.
```shell
make add content_type
```
You can add a behavior with the following command.
```shell
make add behavior
```
```{seealso}
You can check the list of available subtemplates in the [`bobtemplates.plone` `README.md` file](https://github.com/plone/bobtemplates.plone/?tab=readme-ov-file#provided-subtemplates).
See also the documentation of [Mockup and Patternslib](https://6.docs.plone.org/classic-ui/mockup.html) for how to build the UI toolkit for Classic UI.
```
## License
The project is licensed under GPLv2.
## Credits and acknowledgements 🙏
Generated from the [`cookieplone-templates` template](https://github.com/plone/cookieplone-templates/tree/main/) on 2025-04-28 14:50:18.. A special thanks to all contributors and supporters!
Raw data
{
"_id": null,
"home_page": null,
"name": "kitconcept.core",
"maintainer": null,
"docs_url": null,
"requires_python": "==3.12.*",
"maintainer_email": null,
"keywords": "CMS, Plone, Python",
"author": null,
"author_email": "kitconcept GmbH <contact@kitconcept.com>",
"download_url": "https://files.pythonhosted.org/packages/a6/93/9a52477dc383af47475036df0d9db05bc82c1c257fd51e4700d88c38e7d9/kitconcept_core-1.0.0a12.tar.gz",
"platform": null,
"description": "# kitconcept.core\n\nCore setup for kitconcept GmbH distributions built on top of Plone\n\n## Features\n\nTODO: List our awesome features\n\n## Installation\n\nInstall kitconcept.core with uv.\n\n```shell\nuv add kitconcept.core\n```\n\nCreate the Plone site.\n\n```shell\nmake create-site\n```\n\n## Contribute\n\n- [Issue tracker](https://github.com/kitconcept/kitconcept-core/issues)\n- [Source code](https://github.com/kitconcept/kitconcept-core/)\n\n### Prerequisites \u2705\n\n- An [operating system](https://6.docs.plone.org/install/create-project-cookieplone.html#prerequisites-for-installation) that runs all the requirements mentioned.\n- [uv](https://6.docs.plone.org/install/create-project-cookieplone.html#uv)\n- [Make](https://6.docs.plone.org/install/create-project-cookieplone.html#make)\n- [Git](https://6.docs.plone.org/install/create-project-cookieplone.html#git)\n- [Docker](https://docs.docker.com/get-started/get-docker/) (optional)\n\n### Installation \ud83d\udd27\n\n1. Clone this repository.\n\n ```shell\n git clone git@github.com:kitconcept/kitconcept-core.git\n cd kitconcept-core/backend\n ```\n\n2. Install this code base.\n\n ```shell\n make install\n ```\n\n\n### Add features using `plonecli` or `bobtemplates.plone`\n\nThis package provides markers as strings (`<!-- extra stuff goes here -->`) that are compatible with [`plonecli`](https://github.com/plone/plonecli) and [`bobtemplates.plone`](https://github.com/plone/bobtemplates.plone).\nThese markers act as hooks to add all kinds of features through subtemplates, including behaviors, control panels, upgrade steps, or other subtemplates from `bobtemplates.plone`.\n`plonecli` is a command line client for `bobtemplates.plone`, adding autocompletion and other features.\n\nTo add a feature as a subtemplate to your package, use the following command pattern.\n\n```shell\nmake add <template_name>\n```\n\nFor example, you can add a content type to your package with the following command.\n\n```shell\nmake add content_type\n```\n\nYou can add a behavior with the following command.\n\n```shell\nmake add behavior\n```\n\n```{seealso}\nYou can check the list of available subtemplates in the [`bobtemplates.plone` `README.md` file](https://github.com/plone/bobtemplates.plone/?tab=readme-ov-file#provided-subtemplates).\nSee also the documentation of [Mockup and Patternslib](https://6.docs.plone.org/classic-ui/mockup.html) for how to build the UI toolkit for Classic UI.\n```\n\n## License\n\nThe project is licensed under GPLv2.\n\n## Credits and acknowledgements \ud83d\ude4f\n\nGenerated from the [`cookieplone-templates` template](https://github.com/plone/cookieplone-templates/tree/main/) on 2025-04-28 14:50:18.. A special thanks to all contributors and supporters!\n",
"bugtrack_url": null,
"license": null,
"summary": "Core setup for kitconcept GmbH distributions built on top of Plone",
"version": "1.0.0a12",
"project_urls": {
"Homepage": "https://github.com/kitconcept/kitconcept-core",
"PyPI": "https://pypi.org/project/kitconcept.core",
"Source": "https://github.com/kitconcept/kitconcept-core",
"Tracker": "https://github.com/kitconcept/kitconcept-core/issues"
},
"split_keywords": [
"cms",
" plone",
" python"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "281402d20c42d9ce60f7738dc9d4133dfc3af68a763205a5ab2b041e5c22926c",
"md5": "086de7619787230d7b0d23186ec02946",
"sha256": "0d905deddb43f6de756be7bf01106587070a8ea3ef1beadd00cf11fcb824f924"
},
"downloads": -1,
"filename": "kitconcept_core-1.0.0a12-py3-none-any.whl",
"has_sig": false,
"md5_digest": "086de7619787230d7b0d23186ec02946",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": "==3.12.*",
"size": 231068,
"upload_time": "2025-07-10T10:42:38",
"upload_time_iso_8601": "2025-07-10T10:42:38.527809Z",
"url": "https://files.pythonhosted.org/packages/28/14/02d20c42d9ce60f7738dc9d4133dfc3af68a763205a5ab2b041e5c22926c/kitconcept_core-1.0.0a12-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a6939a52477dc383af47475036df0d9db05bc82c1c257fd51e4700d88c38e7d9",
"md5": "cc5e4e4c0ab5ae5719a531b91276394c",
"sha256": "8e550d169da075c51c7bff1115cbc2f0aec32a0c8fc300092a0ceff598883c42"
},
"downloads": -1,
"filename": "kitconcept_core-1.0.0a12.tar.gz",
"has_sig": false,
"md5_digest": "cc5e4e4c0ab5ae5719a531b91276394c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": "==3.12.*",
"size": 314326,
"upload_time": "2025-07-10T10:42:43",
"upload_time_iso_8601": "2025-07-10T10:42:43.365738Z",
"url": "https://files.pythonhosted.org/packages/a6/93/9a52477dc383af47475036df0d9db05bc82c1c257fd51e4700d88c38e7d9/kitconcept_core-1.0.0a12.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-07-10 10:42:43",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "kitconcept",
"github_project": "kitconcept-core",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "kitconcept.core"
}