# create a strapi project
yarn create strapi-app my-project --quickstart
cd /my-project
# create plugins folder if not exists
# mkdir plugins
# go to plugins folder
cd plugins
# clone the plugin code into a folder and skip the prefix. The folder name has to be the plugin name
git clone https://github.com/efechq/strapi-plugin-content-export-import content-export-import
# install dependencies
cd content-export-import && yarn install
# build the plugin
cd ../..
yarn build
# start
yarn develop
yarn develop --watch-admin
Running at http://localhost:8000/
- In a root folder of your strapi project run
npm install strapi-plugin-entity-relationship-chart --save
- Rebuild admin UI
strapi build
- Run strapi
strapi develop
- Support JSON export & import
- Delete all content of a type
Create a single and collection type without draft modus and the following fields:
- text
- number
- checkbox
- richtext
Not supported
- Media fields, e.g. image, video, etc.
- Any other file type, e.g. csv, etc.