feat: BreakPilot PWA - Full codebase (clean push without large binaries)
Some checks failed
Tests / Go Tests (push) Has been cancelled
Tests / Python Tests (push) Has been cancelled
Tests / Integration Tests (push) Has been cancelled
Tests / Go Lint (push) Has been cancelled
Tests / Python Lint (push) Has been cancelled
Tests / Security Scan (push) Has been cancelled
Tests / All Checks Passed (push) Has been cancelled
Security Scanning / Secret Scanning (push) Has been cancelled
Security Scanning / Dependency Vulnerability Scan (push) Has been cancelled
Security Scanning / Go Security Scan (push) Has been cancelled
Security Scanning / Python Security Scan (push) Has been cancelled
Security Scanning / Node.js Security Scan (push) Has been cancelled
Security Scanning / Docker Image Security (push) Has been cancelled
Security Scanning / Security Summary (push) Has been cancelled
CI/CD Pipeline / Go Tests (push) Has been cancelled
CI/CD Pipeline / Python Tests (push) Has been cancelled
CI/CD Pipeline / Website Tests (push) Has been cancelled
CI/CD Pipeline / Linting (push) Has been cancelled
CI/CD Pipeline / Security Scan (push) Has been cancelled
CI/CD Pipeline / Docker Build & Push (push) Has been cancelled
CI/CD Pipeline / Integration Tests (push) Has been cancelled
CI/CD Pipeline / Deploy to Staging (push) Has been cancelled
CI/CD Pipeline / Deploy to Production (push) Has been cancelled
CI/CD Pipeline / CI Summary (push) Has been cancelled
ci/woodpecker/manual/build-ci-image Pipeline was successful
ci/woodpecker/manual/main Pipeline failed
Some checks failed
Tests / Go Tests (push) Has been cancelled
Tests / Python Tests (push) Has been cancelled
Tests / Integration Tests (push) Has been cancelled
Tests / Go Lint (push) Has been cancelled
Tests / Python Lint (push) Has been cancelled
Tests / Security Scan (push) Has been cancelled
Tests / All Checks Passed (push) Has been cancelled
Security Scanning / Secret Scanning (push) Has been cancelled
Security Scanning / Dependency Vulnerability Scan (push) Has been cancelled
Security Scanning / Go Security Scan (push) Has been cancelled
Security Scanning / Python Security Scan (push) Has been cancelled
Security Scanning / Node.js Security Scan (push) Has been cancelled
Security Scanning / Docker Image Security (push) Has been cancelled
Security Scanning / Security Summary (push) Has been cancelled
CI/CD Pipeline / Go Tests (push) Has been cancelled
CI/CD Pipeline / Python Tests (push) Has been cancelled
CI/CD Pipeline / Website Tests (push) Has been cancelled
CI/CD Pipeline / Linting (push) Has been cancelled
CI/CD Pipeline / Security Scan (push) Has been cancelled
CI/CD Pipeline / Docker Build & Push (push) Has been cancelled
CI/CD Pipeline / Integration Tests (push) Has been cancelled
CI/CD Pipeline / Deploy to Staging (push) Has been cancelled
CI/CD Pipeline / Deploy to Production (push) Has been cancelled
CI/CD Pipeline / CI Summary (push) Has been cancelled
ci/woodpecker/manual/build-ci-image Pipeline was successful
ci/woodpecker/manual/main Pipeline failed
All services: admin-v2, studio-v2, website, ai-compliance-sdk, consent-service, klausur-service, voice-service, and infrastructure. Large PDFs and compiled binaries excluded via .gitignore.
This commit is contained in:
117
website/components/admin/system-info-configs/index.ts
Normal file
117
website/components/admin/system-info-configs/index.ts
Normal file
@@ -0,0 +1,117 @@
|
||||
/**
|
||||
* SystemInfoSection Configurations
|
||||
*
|
||||
* Pre-defined configurations for each admin module.
|
||||
* Modular architecture - each config in its own file.
|
||||
*/
|
||||
|
||||
import type { SystemInfoConfig } from './types'
|
||||
|
||||
// Import individual configurations
|
||||
import { dashboardConfig } from './dashboard-config'
|
||||
import { gpuConfig } from './gpu-config'
|
||||
import { consentConfig } from './consent-config'
|
||||
import { dsrConfig } from './dsr-config'
|
||||
import { llmCompareConfig } from './llm-compare-config'
|
||||
import { securityConfig } from './security-config'
|
||||
import { middlewareConfig } from './middleware-config'
|
||||
import { communicationConfig } from './communication-config'
|
||||
import { mailConfig } from './mail-config'
|
||||
import { sbomConfig } from './sbom-config'
|
||||
import { brandbookConfig } from './brandbook-config'
|
||||
import { dsmsConfig } from './dsms-config'
|
||||
import { pcaPlatformConfig } from './pca-platform-config'
|
||||
import { eduSearchConfig } from './edu-search-config'
|
||||
import { backlogConfig } from './backlog-config'
|
||||
import { zeugnisseCrawlerConfig } from './zeugnisse-crawler-config'
|
||||
import { trainingConfig } from './training-config'
|
||||
import { contentConfig } from './content-config'
|
||||
import { docsConfig } from './docs-config'
|
||||
import { gameConfig } from './game-config'
|
||||
import { onboardingConfig } from './onboarding-config'
|
||||
import { unityBridgeConfig } from './unity-bridge-config'
|
||||
import { ragConfig } from './rag-config'
|
||||
import { workflowConfig } from './workflow-config'
|
||||
|
||||
/**
|
||||
* Combined configuration object for all admin modules.
|
||||
* Keys match the module identifiers used in the admin panel.
|
||||
*/
|
||||
export const SYSTEM_INFO_CONFIGS: Record<string, SystemInfoConfig> = {
|
||||
// Dashboard
|
||||
dashboard: dashboardConfig,
|
||||
|
||||
// Infrastructure
|
||||
gpu: gpuConfig,
|
||||
dsms: dsmsConfig,
|
||||
sbom: sbomConfig,
|
||||
|
||||
// Privacy & Compliance
|
||||
consent: consentConfig,
|
||||
dsr: dsrConfig,
|
||||
|
||||
// AI & ML
|
||||
llmCompare: llmCompareConfig,
|
||||
training: trainingConfig,
|
||||
rag: ragConfig,
|
||||
|
||||
// Security
|
||||
security: securityConfig,
|
||||
middleware: middlewareConfig,
|
||||
|
||||
// Communication
|
||||
communication: communicationConfig,
|
||||
mail: mailConfig,
|
||||
|
||||
// Content & Education
|
||||
content: contentConfig,
|
||||
eduSearch: eduSearchConfig,
|
||||
docs: docsConfig,
|
||||
zeugnisseCrawler: zeugnisseCrawlerConfig,
|
||||
|
||||
// Platform
|
||||
pcaPlatform: pcaPlatformConfig,
|
||||
brandbook: brandbookConfig,
|
||||
game: gameConfig,
|
||||
onboarding: onboardingConfig,
|
||||
unityBridge: unityBridgeConfig,
|
||||
|
||||
// DevOps
|
||||
backlog: backlogConfig,
|
||||
workflow: workflowConfig,
|
||||
}
|
||||
|
||||
// Re-export types
|
||||
export type { SystemInfoConfig } from './types'
|
||||
|
||||
/**
|
||||
* Module Architecture (Total: ~4,899 lines -> 24 modules)
|
||||
*
|
||||
* Individual config files:
|
||||
* ├── dashboard-config.ts (~60 lines)
|
||||
* ├── gpu-config.ts (~200 lines)
|
||||
* ├── consent-config.ts (~200 lines)
|
||||
* ├── dsr-config.ts (~200 lines)
|
||||
* ├── llm-compare-config.ts (~200 lines)
|
||||
* ├── security-config.ts (~250 lines)
|
||||
* ├── middleware-config.ts (~250 lines)
|
||||
* ├── communication-config.ts (~200 lines)
|
||||
* ├── mail-config.ts (~200 lines)
|
||||
* ├── sbom-config.ts (~200 lines)
|
||||
* ├── brandbook-config.ts (~200 lines)
|
||||
* ├── dsms-config.ts (~200 lines)
|
||||
* ├── pca-platform-config.ts (~200 lines)
|
||||
* ├── edu-search-config.ts (~200 lines)
|
||||
* ├── backlog-config.ts (~200 lines)
|
||||
* ├── zeugnisse-crawler-config.ts (~100 lines)
|
||||
* ├── training-config.ts (~100 lines)
|
||||
* ├── content-config.ts (~100 lines)
|
||||
* ├── docs-config.ts (~200 lines)
|
||||
* ├── game-config.ts (~200 lines)
|
||||
* ├── onboarding-config.ts (~200 lines)
|
||||
* ├── unity-bridge-config.ts (~200 lines)
|
||||
* ├── rag-config.ts (~250 lines)
|
||||
* └── workflow-config.ts (~100 lines)
|
||||
*
|
||||
* Original file backed up as: index_original.ts
|
||||
*/
|
||||
Reference in New Issue
Block a user