2025-10-27 16:29:48 -04:00
|
|
|
# Git and version control
|
|
|
|
|
.git
|
|
|
|
|
.gitignore
|
|
|
|
|
.gitea
|
|
|
|
|
|
|
|
|
|
# Documentation
|
|
|
|
|
*.md
|
|
|
|
|
docs/
|
|
|
|
|
|
|
|
|
|
# CI/CD files
|
|
|
|
|
.github/
|
|
|
|
|
renovate.json
|
|
|
|
|
|
|
|
|
|
# Environment files and secrets
|
|
|
|
|
.env
|
|
|
|
|
.env.*
|
|
|
|
|
secrets/
|
|
|
|
|
**/*.pem
|
|
|
|
|
**/*.key
|
|
|
|
|
**/id_rsa*
|
|
|
|
|
**/id_ed25519*
|
|
|
|
|
**/.ssh/
|
|
|
|
|
|
|
|
|
|
# Cache directories
|
|
|
|
|
.ruff_cache/
|
|
|
|
|
**/__pycache__/
|
|
|
|
|
**/.pytest_cache/
|
|
|
|
|
**/node_modules/
|
|
|
|
|
**/dist/
|
|
|
|
|
**/build/
|
2025-10-28 09:30:12 -04:00
|
|
|
**/.yarn/cache/
|
|
|
|
|
**/.yarn/install-state.gz
|
|
|
|
|
**/yarn-cache/
|
2025-10-27 16:29:48 -04:00
|
|
|
|
|
|
|
|
# IDE files
|
|
|
|
|
.vscode/
|
|
|
|
|
.idea/
|
|
|
|
|
*.swp
|
|
|
|
|
*.swo
|
|
|
|
|
|
|
|
|
|
# OS files
|
|
|
|
|
.DS_Store
|
|
|
|
|
Thumbs.db
|
|
|
|
|
|
|
|
|
|
# Logs
|
|
|
|
|
*.log
|
|
|
|
|
logs/
|