Update .gitignore and .dockerignore paths. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
53 lines
460 B
Plaintext
53 lines
460 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Python
|
|
__pycache__
|
|
*.py[cod]
|
|
*.egg-info
|
|
.eggs
|
|
venv/
|
|
.venv/
|
|
|
|
# Instance data (user creates fresh)
|
|
frontends/web/instance/
|
|
frontends/web/certs/
|
|
instance/
|
|
|
|
# Test data
|
|
test_data/
|
|
tests/
|
|
|
|
# Pi-specific
|
|
rpi/
|
|
*.img
|
|
*.img.xz
|
|
*.img.zst
|
|
*.img.zst.zip
|
|
|
|
# Docs
|
|
*.md
|
|
docs/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
|
|
# Misc
|
|
*.log
|
|
*.tmp
|
|
.DS_Store
|
|
|
|
# Dev scripts and old files
|
|
scripts/
|
|
old_files/
|
|
*_old
|
|
*_old.*
|
|
*.bak
|
|
*.orig
|
|
|
|
# Temp files
|
|
frontends/web/temp_files/
|
|
*.db
|