-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsidebars.js
47 lines (47 loc) · 1.23 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
module.exports = {
mySidebar: [
"introduction",
"quick_start",
"prerequisites",
{
type: "category",
label: "Project Organization",
collapsed: false,
items: [
"project_organization/directory_structure",
"project_organization/npm_scripts",
"project_organization/environment_variables",
"project_organization/ci_cd",
],
},
{
type: "category",
label: "Deployments",
collapsed: false,
items: [
"deployments/local_application",
"deployments/firebase",
"deployments/psiturk",
"deployments/gh_pages",
],
description: "Guides for using a specific deployment",
},
{
type: "category",
label: "External Tools",
collapsed: false,
items: ["external_tools/event_triggers", "external_tools/prolific"],
},
{
type: "category",
label: "Further Reading",
items: [
"further_reading/github_discussions",
"further_reading/version_control",
"further_reading/javascript",
],
description: "Guides pointing to additional resources for further learning",
},
"troubleshooting",
],
};