Structure: - control-plane/: Registries, SIMCO directives, CI/CD templates - projects/: Gamilit, ERP-Suite, Trading-Platform, Betting-Analytics - shared/: Libs catalog, knowledge-base Key features: - Centralized port, domain, database, and service registries - 23 SIMCO directives + 6 fundamental principles - NEXUS agent profiles with delegation rules - Validation scripts for workspace integrity - Dockerfiles for all services - Path aliases for quick reference 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
166 lines
5.3 KiB
YAML
166 lines
5.3 KiB
YAML
# ==============================================================================
|
|
# DOMAINS REGISTRY - Control Plane
|
|
# ==============================================================================
|
|
# Proposito: Registro centralizado de dominios por proyecto y ambiente
|
|
# Mantenido por: DevOps-Agent
|
|
# Actualizado: 2025-12-18
|
|
# ==============================================================================
|
|
|
|
version: "1.0.0"
|
|
updated: "2025-12-18"
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# DOMINIOS BASE
|
|
# ------------------------------------------------------------------------------
|
|
base_domains:
|
|
production: "example.com"
|
|
staging: "staging.example.com"
|
|
development: "dev.example.com"
|
|
local: "localhost"
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# PATRONES DE SUBDOMINIO
|
|
# ------------------------------------------------------------------------------
|
|
patterns:
|
|
api: "api.{project}.{base}"
|
|
web: "{project}.{base}"
|
|
admin: "admin.{project}.{base}"
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# PROYECTOS
|
|
# ------------------------------------------------------------------------------
|
|
projects:
|
|
|
|
# ============================================================================
|
|
# GAMILIT
|
|
# ============================================================================
|
|
gamilit:
|
|
description: "Plataforma de gamificacion educativa"
|
|
environments:
|
|
local:
|
|
api: "api.gamilit.localhost"
|
|
web: "gamilit.localhost"
|
|
admin: "admin.gamilit.localhost"
|
|
development:
|
|
api: "api.gamilit.dev.example.com"
|
|
web: "gamilit.dev.example.com"
|
|
admin: "admin.gamilit.dev.example.com"
|
|
staging:
|
|
api: "api.gamilit.staging.example.com"
|
|
web: "gamilit.staging.example.com"
|
|
production:
|
|
api: "api.gamilit.example.com"
|
|
web: "gamilit.example.com"
|
|
admin: "admin.gamilit.example.com"
|
|
|
|
# ============================================================================
|
|
# ERP SUITE - Core
|
|
# ============================================================================
|
|
erp:
|
|
description: "ERP Suite - Core"
|
|
environments:
|
|
local:
|
|
api: "api.erp.localhost"
|
|
web: "erp.localhost"
|
|
admin: "admin.erp.localhost"
|
|
development:
|
|
api: "api.erp.dev.example.com"
|
|
web: "erp.dev.example.com"
|
|
production:
|
|
api: "api.erp.example.com"
|
|
web: "erp.example.com"
|
|
|
|
# ============================================================================
|
|
# ERP VERTICALES
|
|
# ============================================================================
|
|
erp_construccion:
|
|
description: "ERP - Vertical Construccion"
|
|
environments:
|
|
local:
|
|
api: "api.construccion.erp.localhost"
|
|
web: "construccion.erp.localhost"
|
|
development:
|
|
api: "api.construccion.erp.dev.example.com"
|
|
web: "construccion.erp.dev.example.com"
|
|
production:
|
|
api: "api.construccion.erp.example.com"
|
|
web: "construccion.erp.example.com"
|
|
|
|
erp_mecanicas:
|
|
description: "ERP - Vertical Mecanicas"
|
|
environments:
|
|
local:
|
|
api: "api.mecanicas.erp.localhost"
|
|
web: "mecanicas.erp.localhost"
|
|
development:
|
|
api: "api.mecanicas.erp.dev.example.com"
|
|
web: "mecanicas.erp.dev.example.com"
|
|
production:
|
|
api: "api.mecanicas.erp.example.com"
|
|
web: "mecanicas.erp.example.com"
|
|
|
|
erp_vidrio:
|
|
description: "ERP - Vertical Vidrio Templado"
|
|
environments:
|
|
local:
|
|
api: "api.vidrio.erp.localhost"
|
|
web: "vidrio.erp.localhost"
|
|
|
|
erp_retail:
|
|
description: "ERP - Vertical Retail"
|
|
environments:
|
|
local:
|
|
api: "api.retail.erp.localhost"
|
|
web: "retail.erp.localhost"
|
|
|
|
# ============================================================================
|
|
# TRADING PLATFORM
|
|
# ============================================================================
|
|
trading:
|
|
description: "Plataforma de Trading"
|
|
environments:
|
|
local:
|
|
api: "api.trading.localhost"
|
|
web: "trading.localhost"
|
|
ml: "ml.trading.localhost"
|
|
llm: "llm.trading.localhost"
|
|
development:
|
|
api: "api.trading.dev.example.com"
|
|
web: "trading.dev.example.com"
|
|
production:
|
|
api: "api.trading.example.com"
|
|
web: "trading.example.com"
|
|
|
|
# ============================================================================
|
|
# BETTING ANALYTICS
|
|
# ============================================================================
|
|
betting:
|
|
description: "Betting Analytics"
|
|
environments:
|
|
local:
|
|
api: "api.betting.localhost"
|
|
web: "betting.localhost"
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# SSL/TLS CONFIGURATION
|
|
# ------------------------------------------------------------------------------
|
|
ssl:
|
|
local:
|
|
enabled: false
|
|
development:
|
|
enabled: true
|
|
provider: "letsencrypt-staging"
|
|
staging:
|
|
enabled: true
|
|
provider: "letsencrypt"
|
|
production:
|
|
enabled: true
|
|
provider: "letsencrypt"
|
|
hsts: true
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# VALIDACION
|
|
# ------------------------------------------------------------------------------
|
|
validation:
|
|
script: "devtools/scripts/validation/validate-domains.sh"
|