* docs: add guide on fulfillment api (#388) * Create fulfillment-api.md * fix: sidebar * chore(deps): bump axios from 0.21.1 to 0.21.2 in /packages/medusa-cli Bumps [axios](https://github.com/axios/axios) from 0.21.1 to 0.21.2. - [Release notes](https://github.com/axios/axios/releases) - [Changelog](https://github.com/axios/axios/blob/master/CHANGELOG.md) - [Commits](https://github.com/axios/axios/compare/v0.21.1...v0.21.2) --- updated-dependencies: - dependency-name: axios dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: Sebastian Rindom <skrindom@gmail.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
92 lines
2.0 KiB
JavaScript
92 lines
2.0 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: "category",
|
|
label: "Guides",
|
|
items: [
|
|
{
|
|
type: "doc",
|
|
id: "guides/fulfillment-api",
|
|
},
|
|
],
|
|
},
|
|
],
|
|
}
|