56 lines
670 B
Text
56 lines
670 B
Text
# Claude Code
|
|
.cccc/
|
|
|
|
# Rust
|
|
target/
|
|
**/*.rs.bk
|
|
# Note: Cargo.lock IS tracked for reproducible Nix builds
|
|
|
|
# Nix
|
|
result
|
|
result-*
|
|
|
|
# local CI artifacts
|
|
work/
|
|
|
|
# Python
|
|
.venv/
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.egg-info/
|
|
.eggs/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# VM disk images and ISOs (large binary files)
|
|
**/*.qcow2
|
|
**/*.iso
|
|
**/*-efivars.fd
|
|
|
|
# Specific large assets and outputs
|
|
baremetal/vm-cluster/netboot-initrd/initrd
|
|
baremetal/vm-cluster/netboot-initrd/initrd.zst
|
|
baremetal/vm-cluster/netboot-kernel/bzImage
|
|
repomix-output.xml
|
|
flaredb/repomix-output.xml
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.bak
|