Some checks failed
Test / test (push) Has been cancelled
Co-authored-by: Cursor <cursoragent@cursor.com>
131 lines
1.4 KiB
Plaintext
131 lines
1.4 KiB
Plaintext
# Environment variables and secrets
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
*.env
|
|
!*.env.example
|
|
|
|
# Terraform
|
|
*.tfstate
|
|
*.tfstate.*
|
|
.terraform/
|
|
.terraform.lock.hcl
|
|
terraform.tfvars
|
|
*.tfvars
|
|
!*.tfvars.example
|
|
|
|
# Credentials and secrets
|
|
*.pem
|
|
*.key
|
|
*.crt
|
|
*.p12
|
|
*.pfx
|
|
secrets/
|
|
credentials/
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# IDE files
|
|
.vscode/
|
|
.idea/
|
|
*.sublime-project
|
|
*.sublime-workspace
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
*.tmp
|
|
|
|
# Backup files
|
|
*.bak
|
|
*.backup
|
|
|
|
# Python (if any Python scripts)
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
venv/
|
|
env/
|
|
|
|
# Node (if any Node scripts)
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Reports directory
|
|
reports/
|
|
|
|
# Downloads and large binary files
|
|
downloads/
|
|
*.iso
|
|
*.img
|
|
*.qcow2
|
|
*.vmdk
|
|
*.ova
|
|
*.ovf
|
|
|
|
# Helm
|
|
*.tgz
|
|
charts/*.tgz
|
|
helm-charts/*.tgz
|
|
|
|
# Kubernetes generated files
|
|
*.generated.yaml
|
|
*.generated.yml
|
|
kubeconfig
|
|
kubeconfig.*
|
|
|
|
# Ansible
|
|
.ansible/
|
|
ansible.cfg.local
|
|
*.retry
|
|
.vault_pass
|
|
|
|
# Docker
|
|
docker-compose.override.yml
|
|
.docker/
|
|
|
|
# Build artifacts
|
|
dist/
|
|
build/
|
|
out/
|
|
target/
|
|
|
|
# Cache directories
|
|
.cache/
|
|
.terraform.d/
|
|
.helm/
|
|
|
|
# Local configuration overrides
|
|
*.local.yaml
|
|
*.local.yml
|
|
config.local.*
|
|
*-local.*
|
|
|
|
# SSH keys (additional patterns)
|
|
id_rsa*
|
|
id_ed25519*
|
|
*.pub
|
|
!*.pub.example
|
|
|
|
# Generated documentation
|
|
site/
|
|
_site/
|
|
.jekyll-cache/
|
|
|
|
# Nested repo (add as submodule later if needed)
|
|
smom-dbis-138/
|
|
|