update documentation
Some checks failed
Docker Build and Push / setup (push) Successful in 54s
API Docs (Node.js Express) / test (20) (push) Failing after 3m4s
API Docs (Node.js Express) / build (push) Has been skipped
Integration Tests / integration-tests (push) Failing after 2m31s
Integration Tests / performance-tests (push) Has been skipped
API Gateway (Java Spring Boot) / test (21) (push) Failing after 4m18s
API Gateway (Java Spring Boot) / test (17) (push) Failing after 4m19s
API Gateway (Java Spring Boot) / build (push) Has been skipped
Service Adapters (Python FastAPI) / test (3.11) (push) Failing after 1m51s
Docker Build and Push / build-push-service-adapters (push) Successful in 1m15s
Service Adapters (Python FastAPI) / test (3.13) (push) Failing after 1m58s
Service Adapters (Python FastAPI) / test (3.12) (push) Failing after 3m17s
Service Adapters (Python FastAPI) / build (push) Has been skipped
Docker Build and Push / build-push-api-docs (push) Successful in 52s
Docker Build and Push / build-push-frontend (push) Successful in 45s
Docker Build and Push / build-push-api-gateway (push) Successful in 10m4s

This commit is contained in:
GSRN
2025-09-17 23:41:26 +02:00
parent 6a34abe89c
commit af33bc2d20
6 changed files with 147 additions and 30 deletions

View File

@@ -6,12 +6,13 @@ labfusion/
├── README.md # Comprehensive documentation
├── .gitea/ # Gitea Actions CI/CD
│ └── workflows/ # Pipeline definitions
│ ├── ci.yml # Main CI pipeline
│ ├── all-services.yml # Main CI pipeline for all services
│ ├── api-gateway.yml # Java Spring Boot pipeline
│ ├── service-adapters.yml # Python FastAPI pipeline
│ ├── api-docs.yml # Node.js Express pipeline
│ ├── frontend.yml # React frontend pipeline
── integration-tests.yml # Integration testing
── integration-tests.yml # Integration testing
│ └── docker-build.yml # Docker image building pipeline
├── services/ # Modular microservices
│ ├── api-gateway/ # Java Spring Boot API Gateway (Port 8080)
│ │ ├── src/main/java/com/labfusion/
@@ -24,7 +25,9 @@ labfusion/
│ │ ├── pom.xml # Maven dependencies
│ │ ├── Dockerfile # Production container
│ │ ├── Dockerfile.dev # Development container
│ │ ── README.md # Service documentation
│ │ ── README.md # Service documentation
│ │ ├── CLEAN_CODE.md # Clean code implementation details
│ │ └── target/ # Maven build output
│ ├── service-adapters/ # Python FastAPI Service Adapters (Port 8000)
│ │ ├── main.py # FastAPI application (modular)
│ │ ├── models/ # Pydantic schemas
@@ -42,9 +45,23 @@ labfusion/
│ │ │ ├── config.py # Service configurations
│ │ │ └── redis_client.py # Redis connection
│ │ ├── requirements.txt # Python dependencies
│ │ ├── pyproject.toml # Python project configuration
│ │ ├── pytest.ini # Pytest configuration
│ │ ├── Dockerfile # Production container
│ │ ├── Dockerfile.dev # Development container
│ │ ── README.md # Service documentation
│ │ ── README.md # Service documentation
│ │ ├── CLEAN_CODE.md # Clean code implementation details
│ │ ├── tests/ # Test suite
│ │ │ ├── __init__.py
│ │ │ ├── conftest.py
│ │ │ ├── test_general_routes.py
│ │ │ ├── test_home_assistant_routes.py
│ │ │ ├── test_main.py
│ │ │ ├── test_models.py
│ │ │ └── reports/ # Test reports
│ │ ├── htmlcov/ # Coverage reports
│ │ ├── bandit-report.json # Security scan results
│ │ └── safety-report.json # Dependency vulnerability scan
│ ├── metrics-collector/ # Go Metrics Collector (Port 8081) 🚧
│ │ ├── main.go # Go application (planned)
│ │ ├── go.mod # Go dependencies (planned)
@@ -60,9 +77,15 @@ labfusion/
│ └── api-docs/ # API Documentation Service (Port 8083) ✅
│ ├── server.js # Express server for unified docs
│ ├── package.json # Node.js dependencies
│ ├── jest.config.js # Jest test configuration
│ ├── jest.setup.js # Jest setup file
│ ├── Dockerfile # Production container
│ ├── Dockerfile.dev # Development container
── README.md # Service documentation
── README.md # Service documentation
│ ├── CLEAN_CODE.md # Clean code implementation details
│ ├── __tests__/ # Test suite
│ │ └── server.test.js # Server tests
│ └── node_modules/ # Node.js dependencies
├── frontend/ # React Frontend (Port 3000)
│ ├── src/
│ │ ├── components/ # React components
@@ -93,23 +116,35 @@ labfusion/
│ ├── public/
│ │ └── index.html # HTML template
│ ├── package.json # Node.js dependencies (with prop-types)
│ ├── package-lock.json # Dependency lock file
│ ├── rsbuild.config.js # Rsbuild configuration
│ ├── vitest.config.js # Vitest test configuration
│ ├── Dockerfile # Production container
│ ├── Dockerfile.dev # Development container
│ ├── README.md # Frontend documentation
│ ├── CLEAN_CODE.md # Clean code documentation
── RESILIENCE.md # Frontend resilience features
── RESILIENCE.md # Frontend resilience features
│ ├── build/ # Production build output
│ ├── coverage/ # Test coverage reports
│ └── node_modules/ # Node.js dependencies
# Docker Compose for Runners
runners/
docker-compose.runners.yml # Multi-runner Docker Compose setup
env.runners.example # Environment template for runners
manage-runners.sh # Linux/macOS runner management script
config_heavy.yaml # Configuration for heavy workloads (Java/Python)
config_light.yaml # Configuration for light workloads (Node.js/Frontend)
config_docker.yaml # Configuration for Docker workloads
config_security.yaml # Configuration for security workloads
data/ # Shared data directory
data_light/ # Light runner data directory
data_docker/ # Docker runner data directory
data_security/ # Security runner data directory
├── docker-compose.runners.yml # Multi-runner Docker Compose setup
├── env.runners.example # Environment template for runners
├── manage-runners.sh # Linux/macOS runner management script
├── manage-runners.ps1 # Windows PowerShell runner management script
├── config_heavy.yaml # Configuration for heavy workloads (Java/Python)
├── config_light.yaml # Configuration for light workloads (Node.js/Frontend)
├── config_docker.yaml # Configuration for Docker workloads
├── config_security.yaml # Configuration for security workloads
├── fix-cache-issues.sh # Linux/macOS cache fix script
├── fix-cache-issues.ps1 # Windows PowerShell cache fix script
├── compose.yaml # Alternative compose file
└── data/ # Shared data directory
├── data_heavy/ # Heavy runner data directory
├── data_light/ # Light runner data directory
├── data_docker/ # Docker runner data directory
└── data_security/ # Security runner data directory
└── docs/ # Documentation
├── specs.md # Project specifications
@@ -119,4 +154,6 @@ runners/
├── RUNNER_LABELS.md # Runner labels technical documentation
├── OPTIMIZATION_RECOMMENDATIONS.md # CI/CD optimization recommendations
├── DOCKER_RATE_LIMIT_FIX.md # Docker Hub rate limit solutions
── CI_CD.md # CI/CD pipeline documentation
── CI_CD.md # CI/CD pipeline documentation
├── CACHE_TROUBLESHOOTING.md # Cache troubleshooting guide
└── SONARQUBE_INTEGRATION.md # SonarQube integration documentation