refactor(architecture): декомпозировать раздел на 4 файла
All checks were successful
CI/CD Pipeline / docker (push) Successful in 39s
CI/CD Pipeline / deploy (push) Successful in 7s

- architecture.md разбит на architecture/index.md + reference/layers.md, modules.md, segments.md
- добавлена вложенность в сайдбар (Слои, Модули, Сегменты)
- обновлён fileOrder в concat-md.js для 4 файлов
- исправлены dead links на /basics/architecture (добавлен слеш)
- перегенерированы RULES.md и README
This commit is contained in:
2026-04-20 11:40:49 +03:00
parent 36304c14f0
commit f5732904f4
12 changed files with 740 additions and 721 deletions

View File

@@ -10,7 +10,16 @@ const ruSidebar = [
items: [
{ text: 'Технологии и библиотеки', link: '/basics/tech-stack' },
{ text: 'Именование', link: '/basics/naming' },
{ text: 'Архитектура', link: '/basics/architecture' },
{
text: 'Архитектура',
link: '/basics/architecture/',
collapsed: false,
items: [
{ text: 'Слои', link: '/basics/architecture/reference/layers' },
{ text: 'Модули', link: '/basics/architecture/reference/modules' },
{ text: 'Сегменты', link: '/basics/architecture/reference/segments' },
],
},
{ text: 'Стиль кода', link: '/basics/code-style' },
{ text: 'Документирование', link: '/basics/documentation' },
{ text: 'Типизация', link: '/basics/typing' },