collective.techevent


Namecollective.techevent JSON
Version 1.0.0a9 PyPI version JSON
download
home_pageNone
SummarySupport for implementing tech conference in a Plone site.
upload_time2025-07-16 18:27:00
maintainerNone
docs_urlNone
authorNone
requires_python>=3.10
licenseNone
keywords cms plone python
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # collective.techevent

Support for implementing tech conference in a Plone site.

## Features

TODO: List our awesome features

## Installation

Install collective.techevent with uv.

```shell
uv add collective.techevent
```

Create the Plone site.

```shell
make create-site
```

## Contribute

- [Issue tracker](https://github.com/collective/tech-event/issues)
- [Source code](https://github.com/collective/tech-event/)

### 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:collective/tech-event.git
    cd tech-event/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-05-14 00:29:28.. A special thanks to all contributors and supporters!

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "collective.techevent",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": null,
    "keywords": "CMS, Plone, Python",
    "author": null,
    "author_email": "PloneGov-BR <gov@plone.org.br>",
    "download_url": "https://files.pythonhosted.org/packages/33/31/82e98ab37f2ad4a3fe3ea6768162a615a5e09c4a79aaaba76af9c5e80318/collective_techevent-1.0.0a9.tar.gz",
    "platform": null,
    "description": "# collective.techevent\n\nSupport for implementing tech conference in a Plone site.\n\n## Features\n\nTODO: List our awesome features\n\n## Installation\n\nInstall collective.techevent with uv.\n\n```shell\nuv add collective.techevent\n```\n\nCreate the Plone site.\n\n```shell\nmake create-site\n```\n\n## Contribute\n\n- [Issue tracker](https://github.com/collective/tech-event/issues)\n- [Source code](https://github.com/collective/tech-event/)\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:collective/tech-event.git\n    cd tech-event/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-05-14 00:29:28.. A special thanks to all contributors and supporters!\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Support for implementing tech conference in a Plone site.",
    "version": "1.0.0a9",
    "project_urls": {
        "Homepage": "https://github.com/collective/tech-event",
        "PyPI": "https://pypi.org/project/collective.techevent",
        "Source": "https://github.com/collective/tech-event",
        "Tracker": "https://github.com/collective/tech-event/issues"
    },
    "split_keywords": [
        "cms",
        " plone",
        " python"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "69beeb9496d65c7ae1de20dd352c6383952712cb129ad618aa6dadc8528924bb",
                "md5": "f9f3acaba10d1e3835ef55421e95e25e",
                "sha256": "789b0f25d02d5502cd56c2429d25f834a98bfb9595f093cec4022b192830274e"
            },
            "downloads": -1,
            "filename": "collective_techevent-1.0.0a9-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "f9f3acaba10d1e3835ef55421e95e25e",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10",
            "size": 3598960,
            "upload_time": "2025-07-16T18:27:03",
            "upload_time_iso_8601": "2025-07-16T18:27:03.761064Z",
            "url": "https://files.pythonhosted.org/packages/69/be/eb9496d65c7ae1de20dd352c6383952712cb129ad618aa6dadc8528924bb/collective_techevent-1.0.0a9-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "333182e98ab37f2ad4a3fe3ea6768162a615a5e09c4a79aaaba76af9c5e80318",
                "md5": "0ae8c742d323f735ca3f475ebd7de065",
                "sha256": "b45c4f8ff05b370836b0569d0169f9cce0abd483512f2e10cb799ba2290fb36f"
            },
            "downloads": -1,
            "filename": "collective_techevent-1.0.0a9.tar.gz",
            "has_sig": false,
            "md5_digest": "0ae8c742d323f735ca3f475ebd7de065",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 3544618,
            "upload_time": "2025-07-16T18:27:00",
            "upload_time_iso_8601": "2025-07-16T18:27:00.624570Z",
            "url": "https://files.pythonhosted.org/packages/33/31/82e98ab37f2ad4a3fe3ea6768162a615a5e09c4a79aaaba76af9c5e80318/collective_techevent-1.0.0a9.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-16 18:27:00",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "collective",
    "github_project": "tech-event",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "collective.techevent"
}
        
Elapsed time: 0.85977s