All checks were successful
CI / go-lint (push) Has been skipped
CI / python-lint (push) Has been skipped
CI / nodejs-lint (push) Has been skipped
CI / test-go-ai-compliance (push) Successful in 40s
CI / test-python-backend-compliance (push) Successful in 34s
CI / test-python-document-crawler (push) Successful in 26s
CI / test-python-dsms-gateway (push) Successful in 21s
- import_routes: GET /gap-analysis/{document_id} implementiert
- import_routes: Bug-Fix — gap_analysis_result vor try-Block initialisiert
(verhindert UnboundLocalError bei DB-Fehler)
- test_import_routes: 21 neue API-Endpoint-Tests (59 total, alle grün)
- test_screening_routes: 18 neue API-Endpoint-Tests (74 total, alle grün)
- 031_modules.sql: Migration für compliance_service_modules,
compliance_module_regulations, compliance_module_risks
- test_module_routes: 20 neue Tests für Module-Registry-Routen (alle grün)
- freigabe-module.md: MkDocs-Seite für Import/Screening/Modules/RAG
- mkdocs.yml: Nav-Eintrag "Freigabe-Module (Paket 2)"
Gesamt: 146 neue Tests, alle bestanden
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
91 lines
2.9 KiB
YAML
91 lines
2.9 KiB
YAML
site_name: BreakPilot Compliance - Dokumentation
|
|
site_url: https://macmini:8011
|
|
docs_dir: docs-src
|
|
site_dir: docs-site
|
|
|
|
theme:
|
|
name: material
|
|
language: de
|
|
palette:
|
|
- scheme: default
|
|
primary: purple
|
|
accent: purple
|
|
toggle:
|
|
icon: material/brightness-7
|
|
name: Dark Mode
|
|
- scheme: slate
|
|
primary: purple
|
|
accent: purple
|
|
toggle:
|
|
icon: material/brightness-4
|
|
name: Light Mode
|
|
features:
|
|
- search.highlight
|
|
- search.suggest
|
|
- navigation.tabs
|
|
- navigation.sections
|
|
- navigation.expand
|
|
- navigation.top
|
|
- content.code.copy
|
|
- toc.follow
|
|
|
|
plugins:
|
|
- search:
|
|
lang: de
|
|
|
|
markdown_extensions:
|
|
- admonition
|
|
- pymdownx.details
|
|
- pymdownx.superfences:
|
|
custom_fences:
|
|
- name: mermaid
|
|
class: mermaid
|
|
format: !!python/name:pymdownx.superfences.fence_code_format
|
|
- pymdownx.tabbed:
|
|
alternate_style: true
|
|
- pymdownx.highlight:
|
|
anchor_linenums: true
|
|
- pymdownx.inlinehilite
|
|
- pymdownx.snippets
|
|
- tables
|
|
- attr_list
|
|
- md_in_html
|
|
- toc:
|
|
permalink: true
|
|
|
|
nav:
|
|
- Start: index.md
|
|
- Services:
|
|
- AI Compliance SDK:
|
|
- Uebersicht: services/ai-compliance-sdk/index.md
|
|
- Architektur: services/ai-compliance-sdk/ARCHITECTURE.md
|
|
- Developer Guide: services/ai-compliance-sdk/DEVELOPER.md
|
|
- Auditor Dokumentation: services/ai-compliance-sdk/AUDITOR_DOCUMENTATION.md
|
|
- SBOM: services/ai-compliance-sdk/SBOM.md
|
|
- Document Crawler:
|
|
- Uebersicht: services/document-crawler/index.md
|
|
- SDK Module:
|
|
- Vorbereitung-Module (Paket 1): services/sdk-modules/vorbereitung-module.md
|
|
- Freigabe-Module (Paket 2): services/sdk-modules/freigabe-module.md
|
|
- Analyse-Module (Paket 2): services/sdk-modules/analyse-module.md
|
|
- Dokumentations-Module (Paket 3+): services/sdk-modules/dokumentations-module.md
|
|
- DSFA (Art. 35 DSGVO): services/sdk-modules/dsfa.md
|
|
- Rechtliche Texte (Paket 4): services/sdk-modules/rechtliche-texte.md
|
|
- DSR (Betroffenenrechte): services/sdk-modules/dsr.md
|
|
- E-Mail-Templates: services/sdk-modules/email-templates.md
|
|
- Banner Consent: services/sdk-modules/banner-consent.md
|
|
- Academy: services/sdk-modules/academy.md
|
|
- Whistleblower: services/sdk-modules/whistleblower.md
|
|
- Incidents: services/sdk-modules/incidents.md
|
|
- Reporting: services/sdk-modules/reporting.md
|
|
- Vendors: services/sdk-modules/vendors.md
|
|
- Industry Templates: services/sdk-modules/industry-templates.md
|
|
- Document Crawler: services/sdk-modules/document-crawler.md
|
|
- Advisory Board: services/sdk-modules/advisory-board.md
|
|
- DSB Portal: services/sdk-modules/dsb-portal.md
|
|
- Industry Compliance Ingestion: services/sdk-modules/industry-compliance-ingestion.md
|
|
- Entwicklung:
|
|
- Testing: development/testing.md
|
|
- Dokumentation: development/documentation.md
|
|
- CI/CD Pipeline: development/ci-cd-pipeline.md
|