# collective.exportimport.examples **Repository Path**: mirrors_collective/collective.exportimport.examples ## Basic Information - **Project Name**: collective.exportimport.examples - **Description**: Examples to extend collective.exportimport - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-10-17 - **Last Updated**: 2026-05-16 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Migration example project 🚀 This repository consists of example code for migrating a Plone 5.2 site with mosaic to Plone 6 with Volto. See `backend/src/collective/eximportimport/examples/exporting/` and `backend/src/collective/eximportimport/examples/importing/` for an example implementation of exporting and importing content based on collective.exportimport. If you find bugs, have suggestions for improvements, please open an issue. **Currently there are no running examples!!!** ## Quick Start 🏁 ### 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) - [nvm](https://6.docs.plone.org/install/create-project-cookieplone.html#nvm) - [Node.js and pnpm](https://6.docs.plone.org/install/create-project.html#node-js) 22 - [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, then change your working directory. ```shell git clone git@github.com:collective/migration-example-project.git cd migration-example-project ``` 2. Install this code base. ```shell make install ``` ### Fire Up the Servers 🔥 1. Create a new Plone site on your first run. ```shell make backend-create-site ``` 2. Start the backend at http://localhost:8080/. ```shell make backend-start ``` 3. In a new shell session, start the frontend at http://localhost:3000/. ```shell make frontend-start ``` Voila! Your Plone site should be live and kicking! 🎉