1.3.0 • Published 12 months ago

medusa-shippo-fulfillment v1.3.0

Weekly downloads
-
License
-
Repository
-
Last release
12 months ago

medusa-shippo-fulfillment

Shippo Fullfillment provider intigration with Medusa.

If you are not familiar with Medusa, you can learn more on the project web site.

Medusa is a set of commerce modules and tools that allow you to build rich, reliable, and performant commerce applications without reinventing core commerce logic. The modules can be customized and used to build advanced ecommerce stores, marketplaces, or any product that needs foundational commerce primitives. All modules are open-source and freely available on npm.

Features

  • Intigrate shippo with medusa

Prerequisites


How to Install

1. Run the following command in the directory of the Medusa backend:

npm install medusa-shippo-fulfillment

2. Set the following environment variables in your .env file:

SHIPPO_KEY=<YOUR_SHIPPO_KEY>

3. In medusa-config.js add the following at the end of the plugins array:

const plugins = [
  // ...
  {
    resolve: `medusa-shippo-fulfillment`,
    options: {
      shippo_key: process.env.SHIPPO_KEY,
      weight_unit_type: 'lb', // valid values: g, kg, lb, oz
      dimension_unit_type: 'cm', // valid values: cm, mm, in
      webhook_secret: 'nicetoseeyou', // README section on webhooks before using!
      webhook_test_mode: false
    },
  },
]

Test the Plugin

Run the following command in the directory of the Medusa backend to run the backend:

npm run start

Additional Details

1.3.0

12 months ago

1.2.0

1 year ago

1.1.0

1 year ago

1.0.0

1 year ago