docs: define sidebar manually
Signed-off-by: Andrea Luzzardi <aluzzardi@gmail.com>
This commit is contained in:
parent
97908e8fc2
commit
7364951e95
@ -1,5 +1,4 @@
|
|||||||
---
|
---
|
||||||
sidebar_position: 2
|
|
||||||
slug: /1001/install/
|
slug: /1001/install/
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -1,5 +0,0 @@
|
|||||||
{
|
|
||||||
"label": "Administrator Manual",
|
|
||||||
"position": 6,
|
|
||||||
"collapsed": false
|
|
||||||
}
|
|
@ -1,5 +1,4 @@
|
|||||||
---
|
---
|
||||||
sidebar_position: 2
|
|
||||||
slug: /1002/vs/
|
slug: /1002/vs/
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -1,5 +0,0 @@
|
|||||||
{
|
|
||||||
"label": "Introduction",
|
|
||||||
"position": 1,
|
|
||||||
"collapsed": false
|
|
||||||
}
|
|
@ -1,7 +1,5 @@
|
|||||||
---
|
---
|
||||||
sidebar_position: 1
|
|
||||||
slug: /
|
slug: /
|
||||||
sidebar_label: What is Dagger?
|
|
||||||
---
|
---
|
||||||
|
|
||||||
# What is Dagger?
|
# What is Dagger?
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
---
|
---
|
||||||
sidebar_position: 1
|
|
||||||
slug: /1005/what-is-cue/
|
slug: /1005/what-is-cue/
|
||||||
sidebar_label: What is Cue?
|
|
||||||
---
|
---
|
||||||
|
|
||||||
# What is Cue?
|
# What is Cue?
|
||||||
@ -123,27 +121,27 @@ import (
|
|||||||
) // more on packages later
|
) // more on packages later
|
||||||
|
|
||||||
#Person: {
|
#Person: {
|
||||||
|
|
||||||
// further constrain to a min and max length
|
// further constrain to a min and max length
|
||||||
Name: string & strings.MinRunes(3) & strings.MaxRunes(22)
|
Name: string & strings.MinRunes(3) & strings.MaxRunes(22)
|
||||||
|
|
||||||
// we don't need string because the regex handles that
|
// we don't need string because the regex handles that
|
||||||
Email: =~"^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$"
|
Email: =~"^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$"
|
||||||
|
|
||||||
// further constrain to realistic ages
|
// further constrain to realistic ages
|
||||||
Age?: int & >0 & <140
|
Age?: int & >0 & <140
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Bob: #Person & {
|
Bob: #Person & {
|
||||||
Name: "Bob Smith"
|
Name: "Bob Smith"
|
||||||
Email: "bob@smith.com"
|
Email: "bob@smith.com"
|
||||||
Age: 42
|
Age: 42
|
||||||
}
|
}
|
||||||
|
|
||||||
// output in YAML:
|
// output in YAML:
|
||||||
Bob:
|
Bob:
|
||||||
Name: Bob Smith
|
Name: Bob Smith
|
||||||
Email: bob@smith.com
|
Email: bob@smith.com
|
||||||
Age: 42
|
Age: 42
|
||||||
|
|
||||||
@ -161,15 +159,15 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
#Person: {
|
#Person: {
|
||||||
|
|
||||||
// further constrain to a min and max length
|
// further constrain to a min and max length
|
||||||
Name: string & strings.MinRunes(3) & strings.MaxRunes(22)
|
Name: string & strings.MinRunes(3) & strings.MaxRunes(22)
|
||||||
|
|
||||||
// we don't need string because the regex handles that
|
// we don't need string because the regex handles that
|
||||||
Email: =~"^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$"
|
Email: =~"^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$"
|
||||||
|
|
||||||
// further constrain to realistic ages
|
// further constrain to realistic ages
|
||||||
Age?: int & >0 & <140
|
Age?: int & >0 & <140
|
||||||
|
|
||||||
// Job is optional and a string
|
// Job is optional and a string
|
||||||
Job?: string
|
Job?: string
|
||||||
@ -181,7 +179,7 @@ import (
|
|||||||
|
|
||||||
|
|
||||||
Bob: #Engineer & {
|
Bob: #Engineer & {
|
||||||
Name: "Bob Smith"
|
Name: "Bob Smith"
|
||||||
Email: "bob@smith.com"
|
Email: "bob@smith.com"
|
||||||
Age: 42
|
Age: 42
|
||||||
// Job: "Carptenter" // would result in an error
|
// Job: "Carptenter" // would result in an error
|
||||||
|
@ -1,5 +0,0 @@
|
|||||||
{
|
|
||||||
"label": "Learn Dagger",
|
|
||||||
"position": 2,
|
|
||||||
"collapsed": false
|
|
||||||
}
|
|
@ -1,5 +0,0 @@
|
|||||||
{
|
|
||||||
"label": "Universe - API Reference",
|
|
||||||
"position": 5,
|
|
||||||
"collapsed": false
|
|
||||||
}
|
|
@ -1,5 +0,0 @@
|
|||||||
{
|
|
||||||
"label": "Use Cases",
|
|
||||||
"position": 3,
|
|
||||||
"collapsed": false
|
|
||||||
}
|
|
@ -10,19 +10,57 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
// By default, Docusaurus generates a sidebar from the docs folder structure
|
|
||||||
tutorialSidebar: [
|
|
||||||
{ type: 'autogenerated', dirName: '.' },
|
|
||||||
],
|
|
||||||
|
|
||||||
// But you can create a sidebar manually
|
|
||||||
/*
|
|
||||||
tutorialSidebar: [
|
tutorialSidebar: [
|
||||||
{
|
{
|
||||||
type: 'category',
|
type: "category",
|
||||||
label: 'Tutorial',
|
label: "Introduction",
|
||||||
items: ['hello'],
|
collapsible: false,
|
||||||
|
items: ["introduction/what_is", "introduction/vs"],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: "doc",
|
||||||
|
id: "install",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: "category",
|
||||||
|
label: "Learn Dagger",
|
||||||
|
collapsible: false,
|
||||||
|
items: [
|
||||||
|
"learn/what_is_cue",
|
||||||
|
"learn/get-started",
|
||||||
|
"learn/first-env",
|
||||||
|
"learn/google-cloud-run",
|
||||||
|
"learn/kubernetes",
|
||||||
|
"learn/aws-cloudformation",
|
||||||
|
"learn/github-actions",
|
||||||
|
"learn/dev-cue-package",
|
||||||
|
"learn/package-manager",
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: "category",
|
||||||
|
label: "Use Cases",
|
||||||
|
collapsible: false,
|
||||||
|
items: ["use-cases/ci"],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: "category",
|
||||||
|
label: "Universe - API Reference",
|
||||||
|
collapsible: true,
|
||||||
|
collapsed: false,
|
||||||
|
// generate the sidebar for reference doc automatically
|
||||||
|
items: [
|
||||||
|
{
|
||||||
|
type: "autogenerated",
|
||||||
|
dirName: "reference",
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: "category",
|
||||||
|
label: "Administrator Manual",
|
||||||
|
collapsible: false,
|
||||||
|
items: ["administrator/operator-manual"],
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
*/
|
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user