Group products together in product bundles.
- Group products together in product bundles from the admin dashboard.
- Use plugin Store API endpoints to list product bundles in your storefront.
1. Run the following command in the directory of the Medusa backend:
npm i @agilo/medusa-plugin-bundles
2. In medusa-config.js
add the following at the end of the plugins
array:
const plugins = [
// ...
{
resolve: "@agilo/medusa-plugin-bundles",
options: {
enableUI: true,
},
},
];
3. Run the following command in the directory of the Medusa backend to run the migrations:
npx medusa migrations run
1. Start your Medusa backend and admin dashboard, eg.:
npm run dev
2. Visit Bundles in the admin dashboard to create a bundle.
3. Implement your storefront.
- Either use
medusa-react
hooks from the@agilo/medusa-plugin-bundles-client
to list bundles in your storefront. - Or directly consume the Store API endpoints that the plugin adds to Medusa:
- http://localhost:9000/store/bundles - list bundles
- http://localhost:9000/store/bundles/:id - get bundle by id
- http://localhost:9000/store/bundles/:id/products - list products in bundle
We welcome contributions from the community to help make this project even better. Please feel free to open pull requests or issues. Thank you for considering contributing, and we look forward to collaborating with you!
Below you can find the plugin development guide that will help you get started with running Medusa Bundles in your local environment.
Follow these step-by-step instructions to run the project locally:
git clone https://github.com/Agilo/medusa-plugin-bundles.git
- clone the monorepocd medusa-plugin-bundles
- position into the project directorycp .env.example .env
- set up docker-compose environment variablesdocker compose up
- start Medusa Docker containers- Open a new terminal tab
yarn install && yarn run setup
- install dependencies in all packagescd dev/medusa && npx medusa migrations run && cd ../..
- run the migrationscd dev/medusa && yarn run seed:medusa-plugin-bundles && cd ../..
- seed the databaseyarn run start
- build the packages and start the Medusa dev server and plugin watcher
Medusa Admin is now available at http://localhost:7001 and Medusa Bundles admin screen is available at http://localhost:7001/a/bundles
Default credentials for Medusa Admin are:
[email protected]
supersecret
Medusa Storefront is available at http://localhost:8000
- http://localhost:8000/bundles - example bundle listing page
- http://localhost:8000/bundles/medusa-winter-outfit - example bundle detail page
Once you have the project running locally you can start making changes to the plugin in medusa-plugin-bundles/src
and see them reflected in the Medusa Admin and Storefront.
Unfortunately DX when generating migrations which extend or relate to core entities is not great, but here's a workflow that works:
- Make sure
yarn run start
is running cp medusa-plugin-bundles/.env.example medusa-plugin-bundles/.env
- copy and edit environment variables- Edit/create migration files in
medusa-plugin-bundles/src/migrations
npx typeorm migration:generate -d datasource.js src/migrations/BundleUpdate
- this will generate a migration file with a bunch of migrations insrc/migrations/<timestamp>-BundleUpdate.ts
, the migration file will contain migrations for both core medusa entities and your plugin entities. You can now cherry pick the migrations you want to run and delete the rest.- In the
dev/medusa
dir runnpx medusa migrations run
yarn run setup
- install dependencies in all packagesyarn run start
- build the packages and start the Medusa dev server and plugin watcheryarn run sync
- use yalc to publish and pushmedusa-plugin-bundles
andmedusa-plugin-bundles-client
to Medusa backend and Medusa Storefront
Docker services are defined in docker-compose.yml
file.
postgres
- PostgreSQL database server for Medusa available on localhost:5432, you can change credentials and port in.env
anddev/medusa/.env
filespgadmin
- pgAdmin available on http://localhost:5050redis
- Redis server for Medusa available on localhost:6379
This project is licensed under the MIT License.
Medusa Bundles is developed and maintained by AGILO.
Huge thanks to all contributors.