110 lines
No EOL
1 KiB
Text
110 lines
No EOL
1 KiB
Text
# ParticleOS Installer .gitignore
|
|
|
|
# Build artifacts and output
|
|
build/
|
|
output/
|
|
*.iso
|
|
*.deb
|
|
*.squashfs
|
|
*.manifest
|
|
*.size
|
|
logs/
|
|
.archive/
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
*.cache
|
|
*.log
|
|
*.pid
|
|
*.lock
|
|
|
|
# System files
|
|
.DS_Store
|
|
Thumbs.db
|
|
*~
|
|
|
|
# Editor files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Backup files
|
|
*.bak
|
|
*.backup
|
|
*.old
|
|
|
|
# Test artifacts
|
|
test-*/
|
|
test-*.deb
|
|
test-*.iso
|
|
|
|
# Package manager files
|
|
*.dpkg-old
|
|
*.dpkg-dist
|
|
*.dpkg-new
|
|
|
|
# Chroot and mount points
|
|
chroot/
|
|
mnt/
|
|
proc/
|
|
sys/
|
|
dev/
|
|
|
|
# OSTree repositories
|
|
ostree-repo/
|
|
*.ostree
|
|
|
|
# Boot artifacts
|
|
boot/
|
|
initrd*
|
|
vmlinuz*
|
|
|
|
# Network and SSL
|
|
*.pem
|
|
*.key
|
|
*.crt
|
|
*.csr
|
|
|
|
# User-specific files
|
|
*.local
|
|
.env
|
|
.env.local
|
|
|
|
# Documentation builds
|
|
docs/_build/
|
|
site/
|
|
|
|
# Python (if any scripts use Python)
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
.Python
|
|
env/
|
|
venv/
|
|
.venv/
|
|
|
|
# Node.js (if any web components)
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# IDE and editor specific
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db |