Sistema NEXUS v3.4 migrado con: Estructura principal: - core/orchestration: Sistema SIMCO + CAPVED (27 directivas, 28 perfiles) - core/catalog: Catalogo de funcionalidades reutilizables - shared/knowledge-base: Base de conocimiento compartida - devtools/scripts: Herramientas de desarrollo - control-plane/registries: Control de servicios y CI/CD - orchestration/: Configuracion de orquestacion de agentes Proyectos incluidos (11): - gamilit (submodule -> GitHub) - trading-platform (OrbiquanTIA) - erp-suite con 5 verticales: - erp-core, construccion, vidrio-templado - mecanicas-diesel, retail, clinicas - betting-analytics - inmobiliaria-analytics - platform_marketing_content - pos-micro, erp-basico Configuracion: - .gitignore completo para Node.js/Python/Docker - gamilit como submodule (git@github.com:rckrdmrd/gamilit-workspace.git) - Sistema de puertos estandarizado (3005-3199) Generated with NEXUS v3.4 Migration System EPIC-010: Configuracion Git y Repositorios
183 lines
3.9 KiB
Plaintext
183 lines
3.9 KiB
Plaintext
# =============================================================================
|
|
# WORKSPACE-V1 GITIGNORE
|
|
# =============================================================================
|
|
# Generado: 2026-01-04
|
|
# Sistema: NEXUS v3.4
|
|
# EPIC: EPIC-010 - TASK-010-004
|
|
# =============================================================================
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# DEPENDENCIAS
|
|
# -----------------------------------------------------------------------------
|
|
node_modules/
|
|
.pnp/
|
|
.pnp.js
|
|
.yarn/cache/
|
|
.yarn/unplugged/
|
|
.yarn/build-state.yml
|
|
.yarn/install-state.gz
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
.Python
|
|
venv/
|
|
env/
|
|
.venv/
|
|
ENV/
|
|
*.egg-info/
|
|
.eggs/
|
|
dist/
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# BUILD OUTPUTS
|
|
# -----------------------------------------------------------------------------
|
|
dist/
|
|
build/
|
|
.next/
|
|
out/
|
|
.nuxt/
|
|
.output/
|
|
*.tsbuildinfo
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# ENVIRONMENT Y SECRETOS
|
|
# -----------------------------------------------------------------------------
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
.env.development
|
|
.env.production
|
|
.env.test
|
|
*.env
|
|
|
|
# Credenciales
|
|
*.pem
|
|
*.key
|
|
*.crt
|
|
*.p12
|
|
credentials.json
|
|
service-account.json
|
|
secrets.json
|
|
.secrets/
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# LOGS
|
|
# -----------------------------------------------------------------------------
|
|
logs/
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
lerna-debug.log*
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# SISTEMA OPERATIVO
|
|
# -----------------------------------------------------------------------------
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# IDE Y EDITORES
|
|
# -----------------------------------------------------------------------------
|
|
.idea/
|
|
.vscode/
|
|
*.sublime-project
|
|
*.sublime-workspace
|
|
.project
|
|
.classpath
|
|
.settings/
|
|
*.code-workspace
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# TESTING Y COVERAGE
|
|
# -----------------------------------------------------------------------------
|
|
coverage/
|
|
.nyc_output/
|
|
*.lcov
|
|
.coverage
|
|
htmlcov/
|
|
.pytest_cache/
|
|
.tox/
|
|
.nox/
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# DATABASE
|
|
# -----------------------------------------------------------------------------
|
|
*.sql.gz
|
|
*.dump
|
|
*.backup
|
|
*.bak
|
|
data/
|
|
postgres-data/
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# TEMPORALES
|
|
# -----------------------------------------------------------------------------
|
|
tmp/
|
|
temp/
|
|
.tmp/
|
|
.cache/
|
|
.temp/
|
|
*.tmp
|
|
*.temp
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# DOCKER
|
|
# -----------------------------------------------------------------------------
|
|
docker-compose.override.yml
|
|
.docker/
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# PROYECTO ESPECIFICOS
|
|
# -----------------------------------------------------------------------------
|
|
# Node modules anidados en proyectos
|
|
projects/*/apps/*/node_modules/
|
|
projects/*/node_modules/
|
|
|
|
# Uploads y media
|
|
uploads/
|
|
media/
|
|
public/uploads/
|
|
|
|
# ML models (grandes)
|
|
*.h5
|
|
*.pkl
|
|
*.model
|
|
models/*.bin
|
|
|
|
# Jupyter
|
|
.ipynb_checkpoints/
|
|
*.ipynb_checkpoints
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# BACKUPS LOCALES
|
|
# -----------------------------------------------------------------------------
|
|
*.bak
|
|
*.backup
|
|
*.old
|
|
*-backup/
|
|
*-bckp/
|
|
backup/
|
|
backups/
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# MISCELANEOS
|
|
# -----------------------------------------------------------------------------
|
|
.turbo/
|
|
.vercel/
|
|
.netlify/
|
|
|
|
# Backup de gamilit (submodule migration)
|
|
projects/gamilit.bak.*/
|