This repository has been archived by the owner on Oct 31, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsidebars.js
78 lines (75 loc) · 1.82 KB
/
sidebars.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
module.exports = {
docs: [
{
type: 'category',
label: '🦖 Overview',
collapsed: false,
items: [
'overview/index',
'overview/features',
'development/architecture',
],
},
{
type: 'category',
label: '🚀 Getting Started',
collapsed: true,
items: [
'getting-started/create-your-first-test',
'getting-started/what-is-crusher',
],
},
{
type: 'category',
label: '💡 Guides',
collapsed: true,
items: ['guides/setting-up-services', 'guides/using-email-apis'],
},
{
type: 'category',
label: '⚽ Integration',
collapsed: true,
items: ['setting-up/manage-alerts', 'setting-up/github', 'integrations/with-vercel'],
},
{
type: 'category',
label: '🏄♂️ Code',
collapsed: true,
items: [ 'code/writing-custom-code', 'advanced/custom-code-usecases-1', 'advanced/making-network-requests', 'advanced/writing-custom-selectors'],
},
{
type: 'category',
label: '🧱 Contribute',
collapsed: true,
items: [
'development/contributing',
'development/docker-deploy-locally',
'development/setting-up-development-env',
],
},
{
type: "doc",
id: "advanced/faq",
label: "FAQ"
},
],
cli: [
{
type: 'category',
label: 'CLI Documentation',
collapsed: true,
items: ['cli', 'cli/using-cli-in-project', 'cli/custom-host', 'cli/global-option', 'cli/project-options'],
},
{
type: 'category',
label: 'Command Reference',
collapsed: true,
items: [
{
type: 'autogenerated',
dirName: 'cli/commands', // Generate section automatically based on files
},
],
},
],
};