155 lines
2.8 KiB
Plaintext
155 lines
2.8 KiB
Plaintext
# ========================================================
|
|
# Nim / NexusOS
|
|
# ========================================================
|
|
*.nimble
|
|
nimcache/
|
|
nimblecache/
|
|
htmldocs/
|
|
bin/
|
|
learning/
|
|
*.npk
|
|
*.pkg.tar.xz
|
|
*.zst
|
|
|
|
# NimbleOS-specific
|
|
~/.nip/
|
|
/tmp/nexus/
|
|
|
|
# ========================================================
|
|
# Temporary & Logs
|
|
# ========================================================
|
|
*.tmp
|
|
*.temp
|
|
*.log
|
|
*.log.*
|
|
temp/
|
|
logs/
|
|
test_output/
|
|
coverage/
|
|
|
|
# Backups
|
|
*.bak
|
|
*.old
|
|
*.orig
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# ========================================================
|
|
# IDE & Editors
|
|
# ========================================================
|
|
.vscode/
|
|
.idea/
|
|
|
|
# ========================================================
|
|
# Environments
|
|
# ========================================================
|
|
.env
|
|
.venv/
|
|
.kube/
|
|
*.kubeconfig
|
|
|
|
# ========================================================
|
|
# OS Specific
|
|
# ========================================================
|
|
# macOS
|
|
.DS_Store
|
|
.AppleDouble
|
|
.LSOverride
|
|
Icon
|
|
._*
|
|
.DocumentRevisions-V100
|
|
.fseventsd
|
|
.Spotlight-V100
|
|
.TemporaryItems
|
|
.Trashes
|
|
.VolumeIcon.icns
|
|
.com.apple.timemachine.donotpresent
|
|
.AppleDB
|
|
.AppleDesktop
|
|
Network Trash Folder
|
|
Temporary Items
|
|
.apdisk
|
|
|
|
# Linux
|
|
*~
|
|
.fuse_hidden*
|
|
.directory
|
|
.Trash-*
|
|
.nfs*
|
|
|
|
# ========================================================
|
|
# Build Artifacts
|
|
# ========================================================
|
|
build/
|
|
dist/
|
|
work/
|
|
out/
|
|
|
|
# ========================================================
|
|
# Terraform
|
|
# ========================================================
|
|
*.tfstate
|
|
*.tfstate.*
|
|
crash.log
|
|
override.tf
|
|
override.tf.json
|
|
.terraform/
|
|
.terraform.lock.hcl
|
|
|
|
# ========================================================
|
|
# Helm / Kubernetes
|
|
# ========================================================
|
|
charts/
|
|
*.tgz
|
|
values.override.yaml
|
|
|
|
# ========================================================
|
|
# Node / Svelte
|
|
# ========================================================
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
.pnpm-debug.log*
|
|
.svelte-kit/
|
|
|
|
# ========================================================
|
|
# Python
|
|
# ========================================================
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
*.egg-info/
|
|
.eggs/
|
|
|
|
# ========================================================
|
|
# Docker
|
|
# ========================================================
|
|
.dockerignore
|
|
docker-compose.override.yml
|
|
|
|
# ========================================================
|
|
# Proxmox VM Backups
|
|
# ========================================================
|
|
*.vma.zst
|
|
*.vma.lzo
|
|
*.vma.gz
|
|
# Compiled executables
|
|
src/nip.out
|
|
*.out
|
|
|
|
# Debug and test executables (binaries, not source)
|
|
debug_*
|
|
demo_*
|
|
simple_*
|
|
compute_hashes
|
|
# Test binaries (but not test source files)
|
|
test_use_flags
|
|
test_blake2b
|
|
test_filesystem_integration
|
|
test_generation_filesystem
|
|
test_integrity_monitoring
|
|
test_lockfile_restoration
|
|
test_lockfile_system |