mirror of
https://github.com/mleem97/gregWiki.git
synced 2026-04-11 03:29:19 +02:00
Merge Docusaurus site: all content under docs/, align with gregFramework split layout
- Move markdown and wiki-import tree into docs/; keep app shell at repo root - Point docusaurus docs path to docs/; edit links to mleem97/gregWiki - Sync and i18n scripts use gregWiki root and ../.wiki under gregFramework - Sidebars: workspace layout from root docs ids; plugins under mods/extensions - Fix redirects, module catalog URLs, release note paths, and wiki-import category keys - Update repo inventory for split repos; Dockerfile for single-repo context Made-with: Cursor
This commit is contained in:
176
sidebars.js
Normal file
176
sidebars.js
Normal file
@@ -0,0 +1,176 @@
|
||||
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
|
||||
const sidebars = {
|
||||
docs: [
|
||||
'intro',
|
||||
{
|
||||
type: 'category',
|
||||
label: 'Workspace layout',
|
||||
items: [
|
||||
'README',
|
||||
'getting-started',
|
||||
'architecture',
|
||||
'fmf-hooks',
|
||||
'hexmod',
|
||||
'workshop-uploader',
|
||||
],
|
||||
},
|
||||
{
|
||||
type: 'category',
|
||||
label: 'Mods',
|
||||
items: [
|
||||
'mods/framework',
|
||||
{
|
||||
type: 'category',
|
||||
label: 'Plugin Wiki',
|
||||
items: [
|
||||
'mods/extensions/index',
|
||||
'mods/extensions/ffm-plugin-asset-exporter',
|
||||
'mods/extensions/ffm-plugin-multiplayer',
|
||||
'mods/extensions/ffm-plugin-player-models',
|
||||
'mods/extensions/ffm-plugin-sysadmin',
|
||||
'mods/extensions/ffm-plugin-web-ui-bridge',
|
||||
],
|
||||
},
|
||||
{
|
||||
type: 'category',
|
||||
label: 'Mod Wiki',
|
||||
items: [
|
||||
'mods/mods/index',
|
||||
'mods/mods/fmf-console-input-guard',
|
||||
'mods/mods/fmf-gregify-employees',
|
||||
'mods/extensions/fmf-hex-label-mod',
|
||||
'mods/extensions/fmf-lang-compat-bridge',
|
||||
'mods/extensions/fmf-ui-replacement-mod',
|
||||
],
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
type: 'category',
|
||||
label: 'Guides',
|
||||
items: [
|
||||
'guides/enduser-workshop',
|
||||
'guides/contributor-workshop',
|
||||
'guides/release',
|
||||
],
|
||||
},
|
||||
{
|
||||
type: 'category',
|
||||
label: 'Releases',
|
||||
link: {type: 'doc', id: 'releases/index'},
|
||||
items: [
|
||||
{
|
||||
type: 'category',
|
||||
label: 'Plugin releases',
|
||||
items: [
|
||||
'releases/plugins/ffm-plugin-asset-exporter-release',
|
||||
'releases/plugins/ffm-plugin-multiplayer-release',
|
||||
'releases/plugins/ffm-plugin-player-models-release',
|
||||
'releases/plugins/ffm-plugin-sysadmin-release',
|
||||
'releases/plugins/ffm-plugin-web-ui-bridge-release',
|
||||
'releases/plugins/fmf-modpathredirector-release',
|
||||
],
|
||||
},
|
||||
{
|
||||
type: 'category',
|
||||
label: 'Tool releases',
|
||||
items: [
|
||||
'releases/tools/gregtools-modmanager-1.0-release',
|
||||
],
|
||||
},
|
||||
{
|
||||
type: 'category',
|
||||
label: 'Mod releases',
|
||||
items: [
|
||||
'releases/mods/fmf-console-input-guard-release',
|
||||
'releases/mods/fmf-gregify-employees-release',
|
||||
'releases/mods/fmf-hex-label-mod-release',
|
||||
'releases/mods/fmf-lang-compat-bridge-release',
|
||||
'releases/mods/fmf-ui-replacement-mod-release',
|
||||
],
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
type: 'category',
|
||||
label: 'Topics',
|
||||
link: {type: 'doc', id: 'topics/index'},
|
||||
items: [
|
||||
'topics/index',
|
||||
{
|
||||
type: 'category',
|
||||
label: 'Audiences & roles',
|
||||
items: [
|
||||
'topics/audiences/overview',
|
||||
'topics/end-user/overview',
|
||||
'topics/mod-developers/overview',
|
||||
'topics/contributors/overview',
|
||||
'topics/sponsors/overview',
|
||||
'audiences/newbies',
|
||||
'audiences/intermediates',
|
||||
'audiences/professionals',
|
||||
],
|
||||
},
|
||||
{
|
||||
type: 'category',
|
||||
label: 'Reference & technical',
|
||||
items: [
|
||||
'topics/reference/overview',
|
||||
'reference/wiki-mapping',
|
||||
'reference/mod-store-vision',
|
||||
'reference/fmf-hook-naming',
|
||||
'reference/fmf-hooks-catalog',
|
||||
'reference/mcp-server',
|
||||
'reference/release-channels',
|
||||
],
|
||||
},
|
||||
{
|
||||
type: 'category',
|
||||
label: 'Roadmap & planning',
|
||||
items: [
|
||||
'topics/roadmap/overview',
|
||||
'roadmap/unified-roadmap',
|
||||
'roadmap/mod-store-stages',
|
||||
],
|
||||
},
|
||||
{
|
||||
type: 'category',
|
||||
label: 'Contributors (workflow)',
|
||||
items: [
|
||||
'topics/contributors/overview',
|
||||
'contributors/repo-inventory',
|
||||
'contributors/monorepo-target-layout',
|
||||
'contributors/luminescent-design-system',
|
||||
'contributors/docusaurus-workflow',
|
||||
'contributors/plugin-submission-audit',
|
||||
],
|
||||
},
|
||||
{
|
||||
type: 'category',
|
||||
label: 'Legacy wiki import',
|
||||
link: {type: 'doc', id: 'topics/wiki-import/overview'},
|
||||
items: [
|
||||
'topics/wiki-import/overview',
|
||||
{
|
||||
type: 'autogenerated',
|
||||
dirName: 'wiki-import',
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
type: 'category',
|
||||
label: 'Meta & operations',
|
||||
items: [
|
||||
'topics/meta/overview',
|
||||
'topics/meta/game-folder-layout',
|
||||
'meta/Steam-Workshop-and-Tooling',
|
||||
'meta/devserver-betas',
|
||||
'meta/IDEA_BACKLOG',
|
||||
],
|
||||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
};
|
||||
|
||||
module.exports = sidebars;
|
||||
Reference in New Issue
Block a user