chore: Add security and testing patterns to .gitignore

- 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>
This commit is contained in:
Adrian Flores Cortes 2026-01-20 07:54:23 -06:00
parent 923e3d52b2
commit 0ff45f5d8a

19
.gitignore vendored
View File

@ -25,6 +25,18 @@ out/
.env.*.local .env.*.local
!.env.example !.env.example
# -----------------------------------------------------------------------------
# CLAVES Y CERTIFICADOS
# -----------------------------------------------------------------------------
*.pem
*.key
*.p8
*.p12
*.pfx
*.crt
certificates/
keys/
# ----------------------------------------------------------------------------- # -----------------------------------------------------------------------------
# LOGS # LOGS
# ----------------------------------------------------------------------------- # -----------------------------------------------------------------------------
@ -49,9 +61,16 @@ Thumbs.db
*.swo *.swo
*~ *~
# -----------------------------------------------------------------------------
# TESTING Y COVERAGE
# -----------------------------------------------------------------------------
coverage/
.nyc_output/
# ----------------------------------------------------------------------------- # -----------------------------------------------------------------------------
# TEMPORALES # TEMPORALES
# ----------------------------------------------------------------------------- # -----------------------------------------------------------------------------
tmp/ tmp/
temp/ temp/
.cache/ .cache/
.turbo/