medusa-shippo-fulfillment-custom
v1.1.89
Published
Shippo Fullfillment provider intigration with Medusa.
Downloads
25
Maintainers
Readme
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.
⚠️ This plugin is under development and should be considered experimental. Breaking changes are very likely to occur.
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>
SHIPPO_ID=<YOUR_SHIPPO_KEY_ID>
SHIPPO_ENVIRNOMENT=<test_or_production>
SHIPPO_SENDER_NAME=<YOUR_STORE_NAME>
SHIPPO_SENDER_SUBURB=<PICKUP_CITY_NAME>
SHIPPO_SENDER_POSTCODE=<PICKUP_CITY_POSTAL_CODE>
SHIPPO_SENDER_ADDRESS=<PICKUP_ADDRESS>
SHIPPO_SENDER_STATE=<PICKUP_STATE_NAME>
SHIPPO_SENDER_COUNTRY=<PICKUP_COUNTRY_CODE>
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,
shippo_id: process.env.SHIPPO_ID,
envirnoment: process.env.SHIPPO_ENVIRNOMENT,
sender_name: process.env.SHIPPO_SENDER_NAME,
sender_suburb: process.env.SHIPPO_SENDER_SUBURB,
sender_postcode: process.env.SHIPPO_SENDER_POSTCODE,
sender_address: process.env.SHIPPO_SENDER_ADDRESS,
sender_state: process.env.SHIPPO_SENDER_STATE,
sender_country: process.env.SHIPPO_SENDER_COUNTRY,
},
},
]
Test the Plugin
Run the following command in the directory of the Medusa backend to run the backend:
npm run start
Additional Details
- Reach out us here.