we did stuff I guess
This commit is contained in:
parent
b057d003fb
commit
370df6255d
9 changed files with 2103 additions and 8 deletions
108
.gitignore
vendored
Normal file
108
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,108 @@
|
|||
# ParticleOS Installer .gitignore
|
||||
|
||||
# Build artifacts and output
|
||||
build/
|
||||
output/
|
||||
*.iso
|
||||
*.deb
|
||||
*.squashfs
|
||||
*.manifest
|
||||
*.size
|
||||
|
||||
# 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue