Files
medusa-store/www/apps/cloud/sidebar.mjs
Shahed Nasser 0b9819a7e2 docs: added cloud connect storefront guide (#12779)
* docs: added cloud connect storefront guide

* fixes

* add section
2025-06-19 18:01:47 +03:00

135 lines
2.8 KiB
JavaScript

/** @type {import('types').Sidebar.RawSidebar[]} */
export const sidebar = [
{
sidebar_id: "cloud",
title: "Cloud",
items: [
{
type: "link",
path: "/",
title: "Introduction",
},
{
type: "separator",
},
{
type: "category",
title: "Basics",
initialOpen: true,
children: [
{
type: "link",
title: "Organizations",
path: "/organizations",
},
{
type: "link",
title: "Projects",
path: "/projects",
},
{
type: "link",
title: "Environments",
path: "/environments",
},
{
type: "link",
title: "Deployments",
path: "/deployments",
},
],
},
{
type: "category",
title: "Resources",
initialOpen: true,
children: [
{
type: "link",
title: "Database",
path: "/database",
},
{
type: "link",
title: "Redis",
path: "/redis",
},
{
type: "link",
title: "S3",
path: "/s3",
},
],
},
{
type: "category",
title: "Plugins",
initialOpen: true,
children: [
{
type: "link",
title: "Loyalty",
path: "/loyalty-plugin",
},
{
type: "link",
title: "Draft Orders",
path: "/draft-order-plugin",
},
],
},
{
type: "category",
title: "Billing",
initialOpen: true,
children: [
{
type: "link",
title: "Billing & Usage",
path: "/billing-usage",
},
],
},
{
type: "category",
title: "Monitoring & Support",
initialOpen: true,
children: [
{
type: "link",
title: "Logs",
path: "/logs",
},
{
type: "link",
title: "Notifications",
path: "/notifications",
},
{
type: "link",
title: "Support",
path: "/support",
},
],
},
{
type: "category",
title: "Best Practices",
initialOpen: true,
children: [
{
type: "link",
title: "Update Medusa",
path: "/update-medusa",
},
{
type: "link",
title: "Connect Storefront",
path: "/connect-storefront",
},
],
},
],
},
]