df94ed3cd4
- GatewayBridgeController: MCP-artiger Kommando-Adapter für Agent-zu-Backend - TaskBridgeService + LiveUpdateService: SSE Live-Sync + Bridge-Kommandos - FlowBoard.vue: Board-first orchestration dashboard panel - live-sync.ts store + live.ts service: SSE-basierte Live-Updates - Nullability-Warnung in HealthController.cs gefixt - nginx.conf: SSE-Proxy + CORS für Bridge-Endpunkte - .gitignore: pnpm/corepack local caches ausgeschlossen - docs: architecture-board-first-orchestration.md hinzugefügt - README: Backend Bridge API dokumentiert
43 lines
494 B
Plaintext
43 lines
494 B
Plaintext
# Build outputs
|
|
**/bin/
|
|
**/obj/
|
|
**/dist/
|
|
**/node_modules/
|
|
|
|
# Environment
|
|
.env
|
|
!.env.example
|
|
!.env.template
|
|
|
|
# IDE
|
|
.idea/
|
|
.vs/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Docker
|
|
docker-compose.override.yml
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Temporary
|
|
*.tmp
|
|
*.bak
|
|
|
|
# Crash artefacts / Core dumps
|
|
**/core
|
|
**/core.*
|
|
|
|
# pnpm / corepack local caches (lockfile IS committed for reproducible CI builds)
|
|
frontend/.pnpm-home/
|
|
frontend/.corepack-home/
|
|
|
|
# Claude local config (per-developer, not repo-shared)
|
|
.claude/
|