Finalizes directory cleanup by removing obsolete files: - All old debootstrap build scripts (docker-*.sh, final-simple-build.sh) - All old documentation from root (BUILD-*.md, DOCKER-*.md) - Obsolete Dockerfiles (Dockerfile, Dockerfile.build) - Obsolete chroot-overlay/ directory (now using preseed.cfg) - Old build.sh (replaced by scripts/build-iso.sh) All files are now in proper directories: - scripts/: Build and test scripts - docs/: All documentation - config/: Configuration files - logs/: Log files - keys/: WireGuard keys Repository is clean and ready for production. 💘 Generated with Crush Assisted-by: Gemini 2.5 Flash via Crush <crush@charm.land>
66 lines
718 B
Plaintext
66 lines
718 B
Plaintext
# Build output
|
|
output/
|
|
*.img
|
|
*.qcow2
|
|
|
|
# Chroot directory (created during build)
|
|
chroot/
|
|
|
|
# Mount points
|
|
mount/
|
|
|
|
# WireGuard keys (never commit these!)
|
|
client-private.key
|
|
client-public.key
|
|
server-private.key
|
|
server-public.key
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.bak
|
|
*~
|
|
|
|
# IDE/editor files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Build artifacts
|
|
*.deb
|
|
*.tar.gz
|
|
*.tar.xz
|
|
|
|
# Build temporary directories
|
|
build-tmp/
|
|
iso-tmp/
|
|
chroot/
|
|
test-chroot/
|
|
|
|
# Log files (kept in logs/ directory)
|
|
*.log
|
|
|
|
# Test keys (WireGuard)
|
|
*.key
|
|
|
|
# Editor directories
|
|
.crush/
|
|
|
|
# Temporary test artifacts
|
|
test-disk*.img
|
|
test-vm-disk.qcow2
|
|
*.qcow2
|
|
*.img
|
|
|
|
# VM state files
|
|
vm.pid
|
|
console.log
|
|
|
|
# Old test artifacts
|
|
test-disk-final.img
|