medusa-storefinder-plugin
v0.0.1
Published
Plugin para incorporar stores y storefinder feature.
Maintainers
Readme
Medusa v2 Example: Storefinder Plugin
This directory holds the code for the Storefinder plugin.
Prerequisites
Installation
- In your Medusa application, run the following command to install the wishlist plugin:
yarn add medusa-storefinder-plugin # or npm install medusa-storefinder-plugin- Add the plugin to the
pluginsarray inmedusa-config.ts:
module.exports = defineConfig({
// ...
plugins: [
{
resolve: "medusa-storefinder-plugin",
options: {}
}
]
})- Run the
db:migratecommand to run migrations and sync links:
npx medusa db:migrateTest it Out
To test out that the plugin is working, you can import the OpenAPI Spec file and make use of the API routes added by this plugin.
