-
-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathsidebars.js
More file actions
116 lines (114 loc) · 2.73 KB
/
Copy pathsidebars.js
File metadata and controls
116 lines (114 loc) · 2.73 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
// By default, Docusaurus generates a sidebar from the docs folder structure
tutorialSidebar: [
{
type: 'doc',
id: 'intro',
label: 'Getting Started',
},
{
type: 'doc',
id: 'OVERVIEW',
label: 'Overview',
},
{
type: 'category',
label: 'API Reference',
items: [
'api/reference',
'api/python',
],
},
{
type: 'category',
label: 'Examples',
items: [
{
type: 'category',
label: 'Python',
items: [
'examples/python/async/index',
'examples/python/sync/index',
],
},
'examples/rust/index',
'examples/javascript/index',
'examples/swift/index',
'examples/kotlin/index',
'examples/go/index',
'examples/ruby/index',
'examples/csharp/index',
],
},
{
type: 'category',
label: 'Guides',
items: [
'guides/trading',
'guides/raw-handler',
'guides/assets-timeframes',
'guides/python-pystrategy-trading-bot',
],
},
{
type: 'category',
label: 'Architecture',
items: [
'architecture/structure',
'architecture/dataflow',
'architecture/raw-module',
],
},
{
type: 'category',
label: 'Tutorials',
items: [
'tutorials/index',
{
type: 'category',
label: 'Scripts',
items: [
'tutorials/scripts/index',
],
},
],
},
{
type: 'category',
label: 'Project Info',
items: [
{
type: 'link',
label: 'Contributing',
href: 'https://github.com/ChipaDevTeam/BinaryOptionsTools-v2/blob/main/CONTRIBUTING.md',
},
{
type: 'link',
label: 'Code of Conduct',
href: 'https://github.com/ChipaDevTeam/BinaryOptionsTools-v2/blob/main/CODE_OF_CONDUCT.md',
},
{
type: 'link',
label: 'Security',
href: 'https://github.com/ChipaDevTeam/BinaryOptionsTools-v2/blob/main/SECURITY.md',
},
{
type: 'link',
label: 'License',
href: 'https://github.com/ChipaDevTeam/BinaryOptionsTools-v2/blob/main/LICENSE',
},
{
type: 'link',
label: 'Acknowledgments',
href: 'https://github.com/ChipaDevTeam/BinaryOptionsTools-v2/blob/main/ACKNOWLEDGMENTS.md',
},
'project/deployment',
'project/breaking-changes-0.2.6',
'project/raw-handler-summary',
],
},
],
};
module.exports = sidebars;