docs: remove dev notices + fix AI assistant answer width (#9686)

* docs: remove dev notices + fix AI assistant answer width

* fix import

* more notes removal

* rc to latest
This commit is contained in:
Shahed Nasser
2024-10-23 09:52:52 +02:00
committed by GitHub
parent 8891c0a3d0
commit c08df5ac44
35 changed files with 120 additions and 332 deletions
@@ -1,10 +1,8 @@
import { BetaBadge } from "docs-ui"
export const metadata = {
title: `${pageNumber} Manage Relationships`,
}
# {metadata.title} <BetaBadge tooltipText="Data model relationships are in active development and may change." text="Beta" />
# {metadata.title}
In this chapter, you'll learn how to manage relationships between data models when creating, updating, or retrieving records using the module's main service.
@@ -1,10 +1,8 @@
import { BetaBadge } from "docs-ui"
export const metadata = {
title: `${pageNumber} Data Model Relationships`,
}
# {metadata.title} <BetaBadge text="Beta" tooltipText="Data model relationships are in active development and may change." />
# {metadata.title}
In this chapter, youll learn how to define relationships between data models in your module.
@@ -1,10 +1,8 @@
import { BetaBadge } from "docs-ui"
export const metadata = {
title: `${pageNumber} Remote Link`,
}
# {metadata.title} <BetaBadge text="Beta" tooltipText="Remote Links are in active development." />
# {metadata.title}
In this chapter, youll learn what the remote link is and how to use it to manage links.
@@ -15,7 +15,7 @@ Medusa provides a `@medusajs/test-utils` package with utility tools to create in
To use the `@medusajs/test-utils` package, install it as a `devDependency`:
```bash npm2yarn
npm install --save-dev @medusajs/test-utils@rc
npm install --save-dev @medusajs/test-utils@latest
```
---
@@ -6,12 +6,6 @@ export const metadata = {
In this chapter, youll learn the general approach to deploying the Medusa application.
<Note title="Important">
As Medusa v2 is still in active development, it's highly recommended not to deploy it for production purposes.
</Note>
## Medusa Project Components
A standard Medusa project is made up of:
+1 -1
View File
@@ -42,7 +42,7 @@ However, unlike other platforms, Medusa is built with customization in mind. You
Create your first Medusa store by running the following command:
```bash
npx create-medusa-app@rc
npx create-medusa-app@latest
```
---
@@ -1,10 +1,10 @@
import { Prerequisites, BetaBadge } from "docs-ui"
import { Prerequisites } from "docs-ui"
export const metadata = {
title: `${pageNumber} Next.js Starter`,
}
# {metadata.title} <BetaBadge text="Beta" tooltipText="The Next.js Starter is currently in development to fully support Medusa v2." />
# {metadata.title}
In this chapter, youll learn how to install and use the Next.js Starter storefront.