Built by

Medusa

Category

Source

Version

1.2.9

Last updated

Feb 21, 2024, 08:23:07 AM5 months ago

Shopify Source

Migrate your products and categories from Shopify to Medusa.

Features

  • Migrate data related to products from Shopify to Medusa.
  • Consistently keep data in sync between Shopify and Medusa.

Prerequisites


How to Install

1. Run the following command in the directory of the Medusa backend:
npm install medusa-source-shopify
2. Set the following environment variable in Copy to clipboard.env:
SHOPIFY_DOMAIN=<YOUR_SHOPIFY_DOMAIN>
SHOPIFY_PASSWORD=<YOUR_SHOPIFY_PASSWORD>
3. In Copy to clipboardmedusa-config.js add the following at the end of the Copy to clipboardplugins array:
const plugins = [
// ...,
{
resolve: 'medusa-source-shopify',
options: {
domain: process.env.SHOPIFY_DOMAIN,
password: process.env.SHOPIFY_PASSWORD
}
}
];

Test the Plugin

1. Run the following command in the directory of the Medusa backend to run the backend:
npm run start
2. The data migration runs on server start-up. You should see your Shopify products in Medusa.

Build your own plugins

Develop your own plugins with our API to speed up your processes.

Make your plugin available via npm for it to be shared in our Plugin Library with the broader Medusa community.