* docs: create-medusa-app article (#401) * fix: temporarily comment out cloud related docs (#387) * Fix typo in registerOptin section (#407) * docs: Carts in Medusa (#406) * chore(deps): bump tmpl from 1.0.4 to 1.0.5 in /packages/medusa Bumps [tmpl](https://github.com/daaku/nodejs-tmpl) from 1.0.4 to 1.0.5. - [Release notes](https://github.com/daaku/nodejs-tmpl/releases) - [Commits](https://github.com/daaku/nodejs-tmpl/commits/v1.0.5) --- updated-dependencies: - dependency-name: tmpl dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: Vadim Smirnov <62517920+FuzzyReason@users.noreply.github.com> Co-authored-by: ps-89 <91064940+ps-89@users.noreply.github.com> Co-authored-by: Sebastian Rindom <skrindom@gmail.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
104 lines
2.2 KiB
JavaScript
104 lines
2.2 KiB
JavaScript
/**
|
|
* Creating a sidebar enables you to:
|
|
- create an ordered group of docs
|
|
- render a sidebar for each doc of that group
|
|
- provide next/previous navigation
|
|
|
|
The sidebars can be generated from the filesystem, or explicitly defined here.
|
|
|
|
Create as many sidebars as you want.
|
|
*/
|
|
|
|
module.exports = {
|
|
tutorialSidebar: [
|
|
{
|
|
type: "doc",
|
|
id: "quickstart/quick-start",
|
|
label: "Quickstart",
|
|
},
|
|
// {
|
|
// type: 'category',
|
|
// label: 'Quickstart',
|
|
// items: [
|
|
// {
|
|
// type: 'doc',
|
|
// id: 'quickstart/quick-start-docker',
|
|
// label: 'Quickstart w. Docker (Coming soon!)',
|
|
// },
|
|
// ],
|
|
// },
|
|
{
|
|
type: "category",
|
|
label: "Tutorials",
|
|
items: [
|
|
{
|
|
type: "doc",
|
|
id: "tutorial/set-up-your-development-environment",
|
|
},
|
|
{
|
|
type: "doc",
|
|
id: "tutorial/creating-your-medusa-server",
|
|
},
|
|
{
|
|
type: "doc",
|
|
id: "tutorial/adding-custom-functionality",
|
|
},
|
|
// {
|
|
// type: "doc",
|
|
// id: "tutorial/linking-your-local-project-with-medusa-cloud",
|
|
// },
|
|
],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "How to",
|
|
items: [
|
|
{
|
|
type: "doc",
|
|
id: "how-to/plugins",
|
|
},
|
|
{
|
|
type: "doc",
|
|
id: "how-to/notification-api",
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Gatsby + Contentful + Medusa",
|
|
items: [
|
|
{
|
|
type: "doc",
|
|
id: "how-to/headless-ecommerce-store-with-gatsby-contentful-medusa",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
type: "doc",
|
|
id: "how-to/setting-up-a-nextjs-storefront-for-your-medusa-project",
|
|
},
|
|
{
|
|
type: "doc",
|
|
id: "how-to/create-medusa-app",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Guides",
|
|
items: [
|
|
{
|
|
type: "doc",
|
|
id: "guides/fulfillment-api",
|
|
},
|
|
{
|
|
type: "doc",
|
|
id: "guides/checkouts",
|
|
},
|
|
{
|
|
type: "doc",
|
|
id: "guides/carts-in-medusa",
|
|
},
|
|
],
|
|
},
|
|
],
|
|
}
|