0.2.0 • Published 5 months ago
medusa-wishlist-plugin v0.2.0
Medusa v2 Example: Wishlist Plugin
This directory holds the code for the Wishlist Plugin Guide.
You can either:
- install and use it as a plugin in the Medusa application;
- or copy its source files into an existing Medusa application, without using them as a plugin.
Prerequisites
Installation
- In your Medusa application, run the following command to install the wishlist plugin:
yarn add medusa-plugin-wishlist # or npm install medusa-plugin-wishlist
- Add the plugin to the
plugins
array inmedusa-config.ts
:
module.exports = defineConfig({
// ...
plugins: [
{
resolve: "medusa-wishlist-plugin",
options: {}
}
]
})
- Add the following
admin
configuration inmedusa-config.ts
:
module.exports = defineConfig({
// ...
admin: {
vite: () => {
return {
optimizeDeps: {
include: ["qs"],
},
};
},
},
})
- Run the
db:migrate
command to run migrations and sync links:
npx medusa db:migrate
Copy into Existing Medusa Application
You can also copy the source files into an existing Medusa application, which will add them not as a plugin, but as standard Medusa customizations.
- Copy the content of the following directories:
src/api/store
andsrc/api/middlewares.ts
src/link
src/modules/wishlist
src/workflows
- Add the Wishlist Module to
medusa-config.ts
:
module.exports = defineConfig({
// ...
modules: [
{
resolve: "./src/modules/wishlist"
},
]
})
- Run the
db:migrate
command to run migrations and sync links:
npx medusa db:migrate
Test it Out
To test out that the plugin is working, you can go to any product page on the Medusa Admin and see a Wishlist section at the top of the page. You can also try importing the OpenAPI Spec file and using the API routes added by this plugin.
More Resources
- Medusa Documentatin
- OpenAPI Spec file: Can be imported into tools like Postman to view and send requests to this project's API routes.