123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184 |
- module.exports = {
- docs: [
- {
- type:'doc',
- id: 'index',
- },
- {
- type: 'category',
- label: 'Computers',
- items: [
- 'computers/macs',
- 'computers/magic',
- 'computers/ovid',
- 'computers/woozer',
- 'computers/woozie',
- 'computers/zeke'
- ],
- },
- {
- type: 'category',
- label: 'Data',
- collapsible: true,
- link: {
- type:'doc',
- id:'data/data',
- },
- items: [
- 'data/machine',
- ],
- },
- {
- type: 'category',
- label: 'Database',
- items: [
- 'db/MongoDB',
- 'db/MariaDB',
- 'db/MySQL',
- 'db/PostgreSQL',
- 'db/Redis'
- ],
- },
- {
- type: 'category',
- label: 'Editors',
- items: [
- 'editors/atom',
- 'editors/jetbrains',
- 'editors/sublime',
- 'editors/textmate',
- 'editors/vs'
- ],
- },
- {
- type: 'category',
- label: 'Frameworks',
- items: [
- 'waf/nextjs',
- 'waf/rails',
- 'waf/react',
- 'waf/react_native',
- 'waf/vue',
- ],
- },
- {
- type: 'category',
- label: 'Language',
- items: [
- 'lang/Golang',
- 'lang/GraphQL',
- 'lang/JavaScript',
- 'lang/nodejs',
- 'lang/npm',
- 'lang/PHP',
- 'lang/Python',
- 'lang/Ruby',
- 'lang/Rust',
- ],
- },
- {
- type: 'category',
- label: 'SasS',
- items: [
- 'saas/akamai',
- 'saas/aws',
- 'saas/google',
- 'saas/heroku',
- 'saas/openai',
- 'saas/stripe',
- 'saas/supabase',
- 'saas/twilio',
- 'saas/vercel',
- ],
- },
- {
- type: 'category',
- label: 'Server Tools',
- items: [
- 'server/apache',
- 'server/docker',
- 'server/goaccess',
- 'server/htop',
- 'server/iptables',
- 'server/kubernetes',
- 'server/letsencrypt',
- 'server/lynis',
- 'server/mail',
- 'server/monit',
- 'server/nginx',
- 'server/ubuntu',
- 'server/ufw',
- ],
- },
- {
- type: 'category',
- label: 'Server Hosted',
- items: [
- 'host/Discourse',
- 'host/Drupal',
- 'host/Gitea',
- 'host/Gogs',
- 'host/Icecast',
- 'host/InvoicePlane',
- 'host/Laravel',
- 'host/Lychee',
- 'host/Mailcow',
- 'host/Miniflux',
- 'host/Nodebb',
- 'host/Piwik',
- 'host/Shaarli',
- 'host/Siege-sproxy',
- 'host/Webmin',
- {
- type:'category',
- label:'WordPress',
- collapsible: true,
- link: {
- type:'doc',
- id:'host/WordPress',
- },
- items: [
- {
- type:'doc',
- id: 'host/WordPress-Block',
- label: 'Block Theme',
- }
- ]
- },
- 'host/Zammad',
- ],
- },
- {
- type: 'category',
- label: 'Shell',
- items: [
- 'shell/dotfiles',
- 'shell/terminal',
- 'shell/unix',
- 'shell/vi',
- 'shell/bash',
- 'shell/zsh',
- ],
- },
- {
- type: 'category',
- label: 'Software',
- items: [
- 'localhost/macos',
- 'localhost/chrome',
- 'localhost/brew',
- 'localhost/adobe',
- 'localhost/sketch',
- 'localhost/ngrok',
- ],
- },
- {
- type: 'category',
- label: 'Versioning',
- items: [
- 'editors/git',
- 'editors/subversion'
- ],
- },
- ],
- };
|