From 584d621ce182016a5516f7782af8fd018dd0fd01 Mon Sep 17 00:00:00 2001 From: tc-lraigoso Date: Fri, 22 May 2026 21:24:27 -0500 Subject: [PATCH] Add concise architecture diagram --- README.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/README.md b/README.md index 5176ee6..4c2d3d1 100644 --- a/README.md +++ b/README.md @@ -47,6 +47,35 @@ Este repositorio resuelve tres problemas comunes en equipos de datos e integraci ## Arquitectura lógica +Vista resumida: + +```mermaid +flowchart LR + clients["Usuarios y clientes"] + + subgraph host["Host Docker en WSL Ubuntu-24.04"] + portainer["Portainer"] + network["Red red-principal"] + data["Datos compartidos\nPostgreSQL y Redis"] + automation["Automatización y observabilidad\nn8n, Airflow, Hop, NiFi, Grafana, Node-RED"] + ai["IA local\nOpen WebUI, LibreChat, Qwen3 y Qwen3-Coder"] + optional["Servicios opcionales\nMySQL, Cassandra, Portainer Agent"] + end + + clients --> portainer + clients --> automation + clients --> ai + portainer --> network + network --> data + network --> automation + network --> ai + network --> optional + automation --> data + ai --> data +``` + +Vista detallada: + ```mermaid flowchart TB subgraph clients["Clientes y acceso"]