You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2026-05-02 20:52:28 +02:00
145 lines
2.6 KiB
JavaScript
Vendored
145 lines
2.6 KiB
JavaScript
Vendored
const sidebars = {
|
|
docs: [
|
|
|
|
{
|
|
type: 'category',
|
|
label: 'Welcome!',
|
|
link: { type: 'doc', id: 'Instructions/Start' },
|
|
className: 'Start',
|
|
items: [{ type: 'autogenerated', dirName: 'Start' }]
|
|
},
|
|
|
|
{
|
|
type: 'category',
|
|
label: 'Messengers',
|
|
className: 'Messenger',
|
|
items: [
|
|
|
|
],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Social networks',
|
|
className: 'Social',
|
|
items: [
|
|
|
|
],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Databases and spreadsheets',
|
|
className: 'Database',
|
|
items: [
|
|
|
|
],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'File-hosting services and storages',
|
|
className: 'Folder',
|
|
items: [
|
|
|
|
],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Complete solutions (CMS, CRM)',
|
|
className: 'CRM',
|
|
items: [
|
|
|
|
],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'E-commerce and delivery',
|
|
className: 'Commerce',
|
|
items: [
|
|
|
|
],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Planning and projects management',
|
|
className: 'Calendar',
|
|
items: [
|
|
|
|
],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Artificial Intelligence',
|
|
className: 'AI',
|
|
items: [
|
|
|
|
],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Exchange protocols',
|
|
className: 'Exchange',
|
|
items: [
|
|
|
|
],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Other',
|
|
className: 'Other',
|
|
items: [
|
|
|
|
],
|
|
},
|
|
|
|
],
|
|
|
|
addonsSidebar: [
|
|
{
|
|
type: 'doc',
|
|
id: 'Addons/About-Addons',
|
|
label: 'About addons',
|
|
className: 'Addons',
|
|
},
|
|
{
|
|
type: 'doc',
|
|
id: 'Addons/Melezh',
|
|
label: 'Melezh',
|
|
className: 'Melezh',
|
|
},
|
|
],
|
|
|
|
melezhSidebar: [
|
|
{
|
|
type: 'category',
|
|
label: 'About Melezh',
|
|
className: 'Info',
|
|
link: {
|
|
type: 'doc',
|
|
id: 'Addons/Melezh/Overview'
|
|
},
|
|
items: [{ type: 'autogenerated', dirName: 'Addons/Melezh/Start' }]
|
|
},
|
|
|
|
{
|
|
type: 'category',
|
|
label: 'Web interface',
|
|
className: 'WebUI',
|
|
items: [
|
|
{ type: 'autogenerated', dirName: 'Addons/Melezh/Web-Interface' },
|
|
]
|
|
},
|
|
|
|
{
|
|
type: 'category',
|
|
label: 'Command-line interface',
|
|
className: 'CL',
|
|
items: [
|
|
{ type: 'autogenerated', dirName: 'Addons/Melezh/Console-Interface' },
|
|
]
|
|
},
|
|
|
|
]
|
|
|
|
};
|
|
|
|
module.exports = sidebars;
|