- Add CLAVES Y CERTIFICADOS section (*.pem, *.key, etc.) - Add TESTING Y COVERAGE section - Add .turbo/ Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
77 lines
2.1 KiB
Plaintext
77 lines
2.1 KiB
Plaintext
# =============================================================================
|
|
# CLINICA-DENTAL .gitignore
|
|
# =============================================================================
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# DEPENDENCIAS
|
|
# -----------------------------------------------------------------------------
|
|
node_modules/
|
|
.pnp/
|
|
.pnp.js
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# BUILD OUTPUTS
|
|
# -----------------------------------------------------------------------------
|
|
dist/
|
|
build/
|
|
.next/
|
|
out/
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# ENVIRONMENT Y SECRETOS
|
|
# -----------------------------------------------------------------------------
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
!.env.example
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# CLAVES Y CERTIFICADOS
|
|
# -----------------------------------------------------------------------------
|
|
*.pem
|
|
*.key
|
|
*.p8
|
|
*.p12
|
|
*.pfx
|
|
*.crt
|
|
certificates/
|
|
keys/
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# LOGS
|
|
# -----------------------------------------------------------------------------
|
|
logs/
|
|
*.log
|
|
npm-debug.log*
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# IDE Y EDITORES
|
|
# -----------------------------------------------------------------------------
|
|
.idea/
|
|
.vscode/
|
|
*.sublime-project
|
|
*.sublime-workspace
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# SISTEMA OPERATIVO
|
|
# -----------------------------------------------------------------------------
|
|
.DS_Store
|
|
Thumbs.db
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# TESTING Y COVERAGE
|
|
# -----------------------------------------------------------------------------
|
|
coverage/
|
|
.nyc_output/
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# TEMPORALES
|
|
# -----------------------------------------------------------------------------
|
|
tmp/
|
|
temp/
|
|
.cache/
|
|
.turbo/
|