-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsidebars.js
executable file
·54 lines (54 loc) · 1.26 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
module.exports = {
docs: {
Overview: ["index"],
Propulsion: [
{
"Aphlex Engine Design": [
"parameter_overview",
"design_overview",
"inputs",
"cea",
"nozzle",
"injector",
"propsim",
"outputs",
"optimization"
].map((page) => `propulsion/aphlex/${page}`),
},
{
"Callisto Rocket Development": ["general"].map(
(page) => `propulsion/callisto/${page}`
),
},
],
Electronics: ["launchbox"].map((page) => `electronics/${page}`),
Programming: [
{
"Flight Software": [
"overview",
"setup",
"mcl",
"tasks",
"control-tasks",
"drivers",
"lib",
"errors",
].map((page) => `programming/fs/${page}`),
},
{
"Ground Software": ["setup", "back-end", "front-end", "errors"].map(
(page) => `programming/gs/${page}`
),
},
"programming/packets",
],
Website: ["front-end", "cms"].map((page) => `website/${page}`),
Livestreaming: [
"obs",
"stream_setup",
"streaming",
].map((page) => `livestreaming/${page}`),
},
};
26;
// uh oh stinky