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
- Add .gitmodules with references to independent subrepos - Add .gitignore to exclude subrepo directories - Each subrepo (backend, frontend, database) now has its own git repo - Enables independent deployment via Jenkins
66 lines
1.9 KiB
Plaintext
66 lines
1.9 KiB
Plaintext
# =============================================================================
|
|
# ERP-CONSTRUCCION .gitignore
|
|
# =============================================================================
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# SUBREPOSITORIOS - Tienen sus propios repositorios independientes
|
|
# Ver .gitmodules para referencias
|
|
# -----------------------------------------------------------------------------
|
|
backend/
|
|
frontend/
|
|
database/
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# DEPENDENCIAS
|
|
# -----------------------------------------------------------------------------
|
|
node_modules/
|
|
.pnp/
|
|
.pnp.js
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# BUILD OUTPUTS
|
|
# -----------------------------------------------------------------------------
|
|
dist/
|
|
build/
|
|
.next/
|
|
out/
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# ENVIRONMENT Y SECRETOS
|
|
# -----------------------------------------------------------------------------
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
!.env.example
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# LOGS
|
|
# -----------------------------------------------------------------------------
|
|
logs/
|
|
*.log
|
|
npm-debug.log*
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# IDE Y EDITORES
|
|
# -----------------------------------------------------------------------------
|
|
.idea/
|
|
.vscode/
|
|
*.sublime-project
|
|
*.sublime-workspace
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# SISTEMA OPERATIVO
|
|
# -----------------------------------------------------------------------------
|
|
.DS_Store
|
|
Thumbs.db
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# TEMPORALES
|
|
# -----------------------------------------------------------------------------
|
|
tmp/
|
|
temp/
|
|
.cache/
|