Worklogs may contain sensitive troubleshooting information, error messages, tokens, or infrastructure details that should not be in version control.
57 lines
729 B
Plaintext
57 lines
729 B
Plaintext
# Nix build outputs
|
|
result
|
|
result-*
|
|
|
|
# VM disk images
|
|
*.qcow2
|
|
*.qcow
|
|
*.vmdk
|
|
*.vdi
|
|
|
|
# Staging directories (temporary extraction workspace)
|
|
staging/
|
|
staging-sanitized/
|
|
|
|
# Secrets (never commit real secrets)
|
|
secrets/*.yaml
|
|
!secrets/*.example
|
|
*.age
|
|
.sops.yaml
|
|
!.sops.yaml.example
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.swp
|
|
*.bak
|
|
*~
|
|
|
|
# OS-specific
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Editor directories
|
|
.vscode/
|
|
.idea/
|
|
*.sublime-*
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Python (if any helper scripts)
|
|
__pycache__/
|
|
*.pyc
|
|
.venv/
|
|
venv/
|
|
|
|
# Bash script temporaries
|
|
.bash_history
|
|
|
|
# Spec-kit framework (auto-updated by framework)
|
|
.claude/commands/speckit.*.md
|
|
.specify/memory/
|
|
.specify/scripts/
|
|
.specify/templates/
|
|
|
|
# Worklogs (may contain sensitive troubleshooting info)
|
|
docs/worklogs/
|