0.2.1 • Published 6 months ago

@jet-strapi/strapi-content-importer-plugin v0.2.1

Weekly downloads
-
License
ISC
Repository
github
Last release
6 months ago

Strapi plugin Content Importer

Strapi Content Importer plugin is being built to allow Strapi users to bulk import their content though CSV mapping it out to the content type they select.

Setup

NOTE: Node version recommended 14.19.1

Clone the repository to the same folder you are hosting your strapi application locally.

On the plugin directory

  • Run yarn
  • Run yarn link

On the customer_cms directory

  • Make sure that the package.json file has a reference to the plugin development folder:
{
  ...
  "dependencies": {
    ...
    "content-importer": "file:../strapi-content-importer-plugin"
  }
}
  • Run yarn link content-importer;
  • Run yarn develop-plugin;

For refresh on save functionality add the --watch-admin flag to the strapi develop CLI command (you can do this either running the command directly on the CLI or adding to the yarn develop-plugin command on the package.json).

Be aware that server-side strapi changes on the plugin (those made in the server folder of the plugin) needs that the customer_cms project be restarted.