erp-construccion/orchestration/environment/ENVIRONMENT-INVENTORY.yml
rckrdmrd 7f422e51db
Some checks failed
CI Pipeline / Lint & Type Check (push) Has been cancelled
CI Pipeline / Validate SSOT Constants (push) Has been cancelled
CI Pipeline / Backend Tests (push) Has been cancelled
CI Pipeline / Frontend Tests (push) Has been cancelled
CI Pipeline / Build (push) Has been cancelled
CI Pipeline / Docker Build (push) Has been cancelled
feat: Documentation and orchestration updates
🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-07 05:35:28 -06:00

99 lines
3.0 KiB
YAML

# =============================================================================
# ENVIRONMENT-INVENTORY.yml - ERP-CONSTRUCCION
# =============================================================================
# Inventario de Entorno de Desarrollo
# Generado por: @PERFIL_DEVENV
# Nota: Vertical de ERP-Suite para sector Construccion
# =============================================================================
version: "1.0.0"
fecha_creacion: "2026-01-04"
fecha_actualizacion: "2026-01-04"
responsable: "@PERFIL_DEVENV"
# -----------------------------------------------------------------------------
# IDENTIFICACION DEL PROYECTO
# -----------------------------------------------------------------------------
proyecto:
nombre: "ERP Construccion"
alias: "erp-construccion"
nivel: "NIVEL_2B.2"
tipo: "vertical"
estado: "desarrollo"
descripcion: "Vertical ERP para sector construccion"
parent_suite: "erp-suite"
# -----------------------------------------------------------------------------
# SERVICIOS Y PUERTOS
# -----------------------------------------------------------------------------
servicios:
frontend:
nombre: "erp-construccion-frontend"
framework: "React"
version: "18.x"
puerto: 3020
ubicacion: "apps/frontend/"
url_local: "http://localhost:3020"
backend:
nombre: "erp-construccion-backend"
framework: "NestJS"
version: "10.x"
puerto: 3021
ubicacion: "apps/backend/"
url_local: "http://localhost:3021"
api_prefix: "/api/v1"
# -----------------------------------------------------------------------------
# BASE DE DATOS
# -----------------------------------------------------------------------------
base_de_datos:
principal:
engine: "PostgreSQL"
version: "15"
host: "localhost"
puerto: 5433
ambientes:
development:
nombre: "erp_construccion"
usuario: "erp_admin"
password_ref: "DB_PASSWORD en .env"
conexion_ejemplo: "postgresql://erp_admin:{password}@localhost:5433/erp_construccion"
redis:
host: "localhost"
puerto: 6380
uso: "cache"
# -----------------------------------------------------------------------------
# VARIABLES DE ENTORNO
# -----------------------------------------------------------------------------
variables_entorno:
archivo_ejemplo: ".env.example"
variables:
- nombre: "PORT"
ejemplo: "3021"
- nombre: "DATABASE_URL"
ejemplo: "postgresql://erp_admin:password@localhost:5433/erp_construccion"
- nombre: "REDIS_URL"
ejemplo: "redis://localhost:6380"
# -----------------------------------------------------------------------------
# REFERENCIAS
# -----------------------------------------------------------------------------
referencias:
suite_inventory: "../erp-suite/orchestration/environment/ENVIRONMENT-INVENTORY.yml"
inventario_puertos: "orchestration/inventarios/DEVENV-PORTS-INVENTORY.yml"
# =============================================================================
# FIN DE INVENTARIO
# =============================================================================