docs: added new recipes (#4793)

* added new recipes

* added more recipes
This commit is contained in:
Shahed Nasser
2023-08-17 20:37:40 +03:00
committed by GitHub
parent 3b5590ccec
commit 57bb391146
12 changed files with 392 additions and 63 deletions
@@ -5,11 +5,16 @@ addHowToData: true
import DocCardList from '@theme/DocCardList';
import Icons from '@theme/Icon';
import LearningPath from '@site/src/components/LearningPath';
# How to Create a Plugin
In this document, youll learn how to create a plugin and some tips for develoment. If youre interested to learn more about what plugins are and where to find available official and community plugins, check out the [overview document](./overview.mdx).
Alternatively, you can follow this recipe to create a plugin with step-by-step guidance.
<LearningPath pathName="plugin" />
## Prerequisites
You must have an existing Medusa project that you want to create the plugin with.
@@ -4,6 +4,7 @@ description: 'Learn what Plugins are and how they are used in Medusa. Plugins ar
import DocCardList from '@theme/DocCardList';
import Icons from '@theme/Icon';
import LearningPath from '@site/src/components/LearningPath';
# Plugins
@@ -23,6 +24,8 @@ Plugins run within the same process as the core Medusa backend eliminating the n
Plugins can contain customizations to the Medusa backend or the admin dashboard.
<LearningPath pathName="plugin" />
---
## Using Existing Plugins