diff --git a/docs/docs-beta/docs/tutorials/category-one/first-tutorial/index.md b/docs/docs-beta/docs/tutorials/category-one/first-tutorial/index.md new file mode 100644 index 0000000000000..7254d920efd5f --- /dev/null +++ b/docs/docs-beta/docs/tutorials/category-one/first-tutorial/index.md @@ -0,0 +1,6 @@ +--- +title: First tutorial +sidebar_position: 10 +--- + +A multi-page tutorial. \ No newline at end of file diff --git a/docs/docs-beta/docs/tutorials/category-one/first-tutorial/page-one.md b/docs/docs-beta/docs/tutorials/category-one/first-tutorial/page-one.md new file mode 100644 index 0000000000000..d8feabc48c538 --- /dev/null +++ b/docs/docs-beta/docs/tutorials/category-one/first-tutorial/page-one.md @@ -0,0 +1,4 @@ +--- +title: Page one +sidebar_position: 100 +--- \ No newline at end of file diff --git a/docs/docs-beta/docs/tutorials/category-one/first-tutorial/page-two.md b/docs/docs-beta/docs/tutorials/category-one/first-tutorial/page-two.md new file mode 100644 index 0000000000000..9c51ad3e52ec6 --- /dev/null +++ b/docs/docs-beta/docs/tutorials/category-one/first-tutorial/page-two.md @@ -0,0 +1,4 @@ +--- +title: Page two +sidebar_position: 200 +--- \ No newline at end of file diff --git a/docs/docs-beta/docs/tutorials/category-one/second-tutorial/index.md b/docs/docs-beta/docs/tutorials/category-one/second-tutorial/index.md new file mode 100644 index 0000000000000..daf1c1b992fdd --- /dev/null +++ b/docs/docs-beta/docs/tutorials/category-one/second-tutorial/index.md @@ -0,0 +1,6 @@ +--- +title: Second tutorial +sidebar_position: 20 +--- + +Another multi-page tutorial. \ No newline at end of file diff --git a/docs/docs-beta/docs/tutorials/category-one/second-tutorial/page-one.md b/docs/docs-beta/docs/tutorials/category-one/second-tutorial/page-one.md new file mode 100644 index 0000000000000..d8feabc48c538 --- /dev/null +++ b/docs/docs-beta/docs/tutorials/category-one/second-tutorial/page-one.md @@ -0,0 +1,4 @@ +--- +title: Page one +sidebar_position: 100 +--- \ No newline at end of file diff --git a/docs/docs-beta/docs/tutorials/category-one/second-tutorial/page-two.md b/docs/docs-beta/docs/tutorials/category-one/second-tutorial/page-two.md new file mode 100644 index 0000000000000..9c51ad3e52ec6 --- /dev/null +++ b/docs/docs-beta/docs/tutorials/category-one/second-tutorial/page-two.md @@ -0,0 +1,4 @@ +--- +title: Page two +sidebar_position: 200 +--- \ No newline at end of file diff --git a/docs/docs-beta/docs/tutorials/category-one/third-tutorial.md b/docs/docs-beta/docs/tutorials/category-one/third-tutorial.md new file mode 100644 index 0000000000000..3dc1e5fe9536f --- /dev/null +++ b/docs/docs-beta/docs/tutorials/category-one/third-tutorial.md @@ -0,0 +1,6 @@ +--- +title: Third tutorial +sidebar_position: 30 +--- + +A single page tutorial. \ No newline at end of file diff --git a/docs/docs-beta/docs/tutorials/category-two/first-tutorial/index.md b/docs/docs-beta/docs/tutorials/category-two/first-tutorial/index.md new file mode 100644 index 0000000000000..7254d920efd5f --- /dev/null +++ b/docs/docs-beta/docs/tutorials/category-two/first-tutorial/index.md @@ -0,0 +1,6 @@ +--- +title: First tutorial +sidebar_position: 10 +--- + +A multi-page tutorial. \ No newline at end of file diff --git a/docs/docs-beta/docs/tutorials/category-two/first-tutorial/page-one.md b/docs/docs-beta/docs/tutorials/category-two/first-tutorial/page-one.md new file mode 100644 index 0000000000000..d8feabc48c538 --- /dev/null +++ b/docs/docs-beta/docs/tutorials/category-two/first-tutorial/page-one.md @@ -0,0 +1,4 @@ +--- +title: Page one +sidebar_position: 100 +--- \ No newline at end of file diff --git a/docs/docs-beta/docs/tutorials/category-two/first-tutorial/page-two.md b/docs/docs-beta/docs/tutorials/category-two/first-tutorial/page-two.md new file mode 100644 index 0000000000000..9c51ad3e52ec6 --- /dev/null +++ b/docs/docs-beta/docs/tutorials/category-two/first-tutorial/page-two.md @@ -0,0 +1,4 @@ +--- +title: Page two +sidebar_position: 200 +--- \ No newline at end of file diff --git a/docs/docs-beta/docs/tutorials/index.md b/docs/docs-beta/docs/tutorials/index.md new file mode 100644 index 0000000000000..52f03621c29bf --- /dev/null +++ b/docs/docs-beta/docs/tutorials/index.md @@ -0,0 +1,5 @@ +--- +title: Dagster tutorials +--- + +TK \ No newline at end of file diff --git a/docs/docs-beta/docusaurus.config.ts b/docs/docs-beta/docusaurus.config.ts index eab1dc1c27b85..af4414c503c01 100644 --- a/docs/docs-beta/docusaurus.config.ts +++ b/docs/docs-beta/docusaurus.config.ts @@ -82,6 +82,12 @@ const config: Config = { docId: 'intro', position: 'left', }, + { + label: 'Tutorials', + type: 'doc', + docId: 'tutorials/index', + position: 'left' + }, { label: 'Integrations', type: 'doc', diff --git a/docs/docs-beta/sidebars.ts b/docs/docs-beta/sidebars.ts index 4ebabf11210e2..3fc6022c5a6c4 100644 --- a/docs/docs-beta/sidebars.ts +++ b/docs/docs-beta/sidebars.ts @@ -114,6 +114,31 @@ const sidebars: SidebarsConfig = { ], }, ], + tutorials: [ + 'tutorials/index', + { + type: 'category', + label: 'Category one', + collapsed: false, + items: [ + { + type: 'autogenerated', + dirName: 'tutorials/category-one' + } + ] + }, + { + type: 'category', + label: 'Category two', + collapsed: false, + items: [ + { + type: 'autogenerated', + dirName: 'tutorials/category-two' + } + ] + } + ], integrations: [ { type: 'category',