moex-vibe/apps/docs/sidebars.ts
Sergey Krylov 96f003852d
Some checks failed
CI / lint (pull_request) Failing after 1m48s
CI / test (pull_request) Successful in 1m47s
CI / build (pull_request) Successful in 1m53s
CI / lint (push) Failing after 1m59s
CI / test (push) Successful in 1m56s
CI / build (push) Successful in 1m50s
feat: implement portfolio analytics, PnL calculation, and security screener
- Add buyPrice and buyDate to positions for PnL tracking
- Implement backend analytics service for real-time portfolio performance
- Add server-side security screener with filtering, sorting, and pagination
- Update frontend UI with analytics summaries and sortable screener table
- Optimize MOEX API calls with batch fetching and portfolio-specific caching
- Add unit tests for analytics and screener services
2026-06-14 15:59:25 +03:00

72 lines
1.7 KiB
TypeScript

import type { SidebarsConfig } from '@docusaurus/plugin-content-docs';
const sidebars: SidebarsConfig = {
docsSidebar: [
'intro',
'getting-started',
'architecture',
{
type: 'category',
label: 'Backend',
items: [
'backend/overview',
'backend/modules',
'backend/api',
'backend/auth',
'backend/database',
'backend/configuration',
'backend/caching',
'backend/moex-client',
'backend/securities',
'backend/portfolio',
],
},
{
type: 'category',
label: 'Frontend',
items: [
'frontend/overview',
'frontend/routes',
'frontend/components',
'frontend/hooks',
'frontend/api-client',
'frontend/styling',
],
},
{
type: 'category',
label: 'Infrastructure',
items: ['infrastructure/docker', 'infrastructure/ci'],
},
{
type: 'category',
label: 'Development',
items: [
'development/commands',
'development/testing',
'development/codegen',
'development/conventions',
],
},
{
type: 'category',
label: 'Architecture Decisions (ADR)',
items: [
'adr/index',
'adr/ADR-001-backend-single-point-of-access',
'adr/ADR-002-in-memory-cache',
'adr/ADR-003-rate-limiting-strategy',
'adr/ADR-004-feature-modules',
'adr/ADR-005-openapi-codegen-frontend',
'adr/ADR-006-no-cci',
'adr/ADR-007-two-level-caching',
'adr/ADR-008-auth-system',
'adr/ADR-009-portfolio-domain',
'adr/ADR-010-backend-price-computation',
],
},
],
};
export default sidebars;