Files
medusa-store/www/apps/cloud/sidebar.mjs
Shahed Nasser 3f53a63822 docs: add regions supported by Cloud (#13220)
* docs: add regions supported by Cloud

* fix vale error

* change location
2025-08-15 17:35:17 +03:00

156 lines
3.4 KiB
JavaScript

/** @type {import('types').Sidebar.RawSidebar[]} */
export const sidebar = [
{
sidebar_id: "cloud",
title: "Cloud",
items: [
{
type: "category",
title: "Getting Started",
initialOpen: true,
children: [
{
type: "link",
path: "/",
title: "Introduction",
},
{
type: "link",
path: "/faq",
title: "FAQ",
},
],
},
{
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",
children: [
{
type: "link",
title: "Long-Lived",
path: "/environments/long-lived",
},
{
type: "link",
title: "Preview",
path: "/environments/preview",
},
{
type: "link",
title: "Environment Variables",
path: "/environments/environment-variables",
},
],
},
{
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: "category",
title: "Best Practices",
initialOpen: true,
children: [
{
type: "link",
title: "Update Medusa",
path: "/update-medusa",
},
{
type: "link",
title: "Connect Storefront",
path: "/connect-storefront",
},
],
},
],
},
]