This repository has been archived by the owner on Apr 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsidebars.js
117 lines (117 loc) · 3.24 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
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
117
module.exports = {
docs: [
{
type: 'category',
label: 'Getting Started',
items: [
'getting-started/requirements',
'getting-started/installation',
'getting-started/overview',
'getting-started/requests',
'getting-started/responses',
'getting-started/software-architectural-patterns',
'getting-started/conventions-and-principles'
],
},
{
type: 'category',
label: 'Features',
items: [
'features/code-generator',
'features/api-docs-generator',
'features/authentication',
'features/authorization',
'features/user-registration',
'features/social-authentication',
'features/query-parameters',
'features/default-endpoints',
'features/hash-id',
'features/localization',
'features/rate-limiting',
'features/requests-monitor',
'features/data-caching',
'features/pagination',
'features/payments',
'features/system-settings',
'features/api-versioning',
'features/validation',
'features/search-query-parameter',
'features/etag',
'features/useful-commands',
'features/admin-dashboard',
'features/profiler'
],
},
{
type: 'category',
label: 'Main Components',
items: [
'main-components/routes',
'main-components/controllers',
'main-components/requests',
'main-components/transporters',
'main-components/actions',
'main-components/tasks',
'main-components/models',
'main-components/views',
'main-components/transformers',
'main-components/subactions'
],
},
{
type: 'category',
label: 'Optional Components',
items: [
'optional-components/providers',
'optional-components/repositories',
'optional-components/exceptions',
'optional-components/criterias',
'optional-components/tests',
'optional-components/migrations',
'optional-components/seeders',
'optional-components/factories',
'optional-components/middlewares',
'optional-components/configs',
'optional-components/commands',
'optional-components/jobs',
'optional-components/languages',
'optional-components/events',
'optional-components/mails',
'optional-components/notifications',
'optional-components/values'
],
},
{
type: 'category',
label: 'Miscellaneous',
items: [
'miscellaneous/magical-call',
'miscellaneous/tests-helpers',
'miscellaneous/tasks-scheduling',
'miscellaneous/tasks-queuing',
'miscellaneous/container-installer',
'miscellaneous/postman'
],
},
{
type: 'category',
label: 'General',
items: [
'general/faq',
'general/contribution-guide',
'general/upgrade-guide',
'general/testimonials'
],
},
{
type: 'link',
label: '3rd Party Containers',
href: 'https://github.com/apiato/awesome-apiato'
},
{
type: 'link',
label: 'Change Log',
href: 'https://github.com/apiato/apiato/releases'
},
],
};