* docs: migrate ui docs to docs universe * created yarn workspace * added eslint and tsconfig configurations * fix eslint configurations * fixed eslint configurations * shared tailwind configurations * added shared ui package * added more shared components * migrating more components * made details components shared * move InlineCode component * moved InputText * moved Loading component * Moved Modal component * moved Select components * Moved Tooltip component * moved Search components * moved ColorMode provider * Moved Notification components and providers * used icons package * use UI colors in api-reference * moved Navbar component * used Navbar and Search in UI docs * added Feedback to UI docs * general enhancements * fix color mode * added copy colors file from ui-preset * added features and enhancements to UI docs * move Sidebar component and provider * general fixes and preparations for deployment * update docusaurus version * adjusted versions * fix output directory * remove rootDirectory property * fix yarn.lock * moved code component * added vale for all docs MD and MDX * fix tests * fix vale error * fix deployment errors * change ignore commands * add output directory * fix docs test * general fixes * content fixes * fix announcement script * added changeset * fix vale checks * added nofilter option * fix vale error
76 lines
2.1 KiB
Plaintext
76 lines
2.1 KiB
Plaintext
import DocCardList from '@theme/DocCardList';
|
|
import Icons from '@theme/Icon';
|
|
import Feedback from '@site/src/components/Feedback';
|
|
import LearningPath from '@site/src/components/LearningPath';
|
|
import LearningPathList from '@site/src/components/LearningPath/List';
|
|
import LargeCard from '@site/src/components/LargeCard';
|
|
|
|
# Medusa Recipes
|
|
|
|
This document provides you resources for different paths based on what you're building with Medusa.
|
|
|
|
:::note
|
|
|
|
These recipes assume you already have a Medusa backend setup. If not, you can create a Medusa project with the following command:
|
|
|
|
```bash
|
|
npx create-medusa-app
|
|
```
|
|
|
|
[Learn more in this guide](../create-medusa-app.mdx).
|
|
|
|
:::
|
|
|
|
## Recipe: Setup Ecommerce Store
|
|
|
|
Follow this recipe if you want to use Medusa for an ecommerce store. This recipe includes three steps that will get you a storefront deployed to Vercel and a backend deployed to Railway.
|
|
|
|
<LearningPath pathName="simple-quickstart" />
|
|
|
|
---
|
|
|
|
## Use-Case Based Recipes
|
|
|
|
Explore available recipes for different commerce use cases.
|
|
|
|
<DocCardList />
|
|
|
|
<Feedback
|
|
event="survey_use_cases"
|
|
question="Did your find your use case?"
|
|
positiveQuestion="Is there anything that should improved?"
|
|
negativeQuestion="What was your use case?"
|
|
showLongForm={false}
|
|
/>
|
|
|
|
---
|
|
|
|
<!-- vale docs.HeadingPunctuation = NO -->
|
|
|
|
## Can't find your path?
|
|
|
|
<!-- vale docs.HeadingPunctuation = YES -->
|
|
|
|
Medusa is a customizable commerce solution that can be used to build any custom use case. If you can't find your use case mentioned above, the following guides give you a general understanding of how Medusa can be used and how you can customize it.
|
|
|
|
<DocCardList colSize={6} items={[
|
|
{
|
|
type: 'link',
|
|
href: '/modules/overview',
|
|
label: 'Commerce Modules',
|
|
customProps: {
|
|
icon: Icons['puzzle-solid'],
|
|
description: "Learn about Medusa's commerce features and how to customize them."
|
|
}
|
|
},
|
|
{
|
|
type: 'link',
|
|
href: '#',
|
|
label: 'Medusa Development',
|
|
customProps: {
|
|
icon: Icons['server-stack-solid'],
|
|
description: "Learn how about Medusa's architecture and how to customize it."
|
|
}
|
|
},
|
|
]} />
|