workspace-v1/.gitignore
rckrdmrd fa13a9760d chore: Configurar arquitectura de subrepositorios
Cambios principales:
- Actualizar .gitmodules: gamilit usa HTTPS (github.com)
- Actualizar .gitignore: ignorar proyectos con repos en Gitea
- Crear SUBREPOSITORIOS.md: documentacion de arquitectura de repos
- Actualizar submodulo gamilit: sincronizado con workspace desarrollo

Proyectos removidos del tracking (4050 archivos):
- erp-suite, erp-core, erp-construccion, erp-clinicas
- erp-retail, erp-mecanicas-diesel, erp-vidrio-templado
- trading-platform, betting-analytics, inmobiliaria-analytics
- platform_marketing_content

Estos proyectos tienen repositorios independientes en Gitea:
http://72.60.226.4:3000/rckrdmrd/

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-04 05:27:54 -06:00

203 lines
4.7 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.*/
# -----------------------------------------------------------------------------
# SUBREPOSITORIOS - Proyectos con repositorios independientes en Gitea
# -----------------------------------------------------------------------------
# Estos proyectos tienen sus propios repositorios en http://72.60.226.4:3000/rckrdmrd
# Ver archivo SUBREPOSITORIOS.md para referencias completas
#
# NOTA: gamilit NO se ignora porque es un submodulo Git (ver .gitmodules)
# -----------------------------------------------------------------------------
projects/erp-suite/
projects/erp-core/
projects/erp-construccion/
projects/erp-clinicas/
projects/erp-retail/
projects/erp-mecanicas-diesel/
projects/erp-vidrio-templado/
projects/trading-platform/
projects/betting-analytics/
projects/inmobiliaria-analytics/
projects/platform_marketing_content/