40 lines
491 B
Plaintext
40 lines
491 B
Plaintext
# Credentials and secrets — NEVER commit these
|
|
*.env
|
|
.env
|
|
.env.*
|
|
secrets.*
|
|
credentials.*
|
|
*password*
|
|
*passwd*
|
|
*secret*
|
|
|
|
# General OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
*.bak
|
|
*.swp
|
|
|
|
# Editor directories
|
|
.vscode/
|
|
.idea/
|
|
|
|
# Python (if any scripts are added later)
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
.venv/
|
|
env/
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
.mypy_cache/
|
|
.pytest_cache/
|
|
.ruff_cache/
|
|
|
|
# Node (if any scripts are added later)
|
|
node_modules/
|
|
*.log
|
|
|
|
# Sensitive plain-text notes — add them explicitly when safe
|
|
Datos.txt
|