Search for a command to run...
In this document, you’ll learn how to install and configure the ApiShip plugin for Medusa.
This guide covers configuring the legacy 1.x version, where you set the plugin options in . The current version 2 keeps these settings in the Integration Module, so a store admin edits them in Admin without changing configuration files or redeploying. For a new installation, follow Getting Started with ApiShip for Medusa.
yarn add @gorgo/medusa-fulfillment-apishipAdd the provider configuration in your file of the Medusa admin application:
medusa-config.ts1// ...2module.exports = defineConfig({3 // ...4 modules: [5 {6 resolve: "@medusajs/medusa/fulfillment",7 options: {8 providers: [9 {10 resolve: "@gorgo/medusa-fulfillment-apiship/providers/fulfillment-apiship",11 id: "apiship",12 options: {},13 },14 ],15 },16 },17 ],18 plugins: [19 // ...20 {21 resolve: "@gorgo/medusa-fulfillment-apiship",22 options: {},23 },24 ],25})