Clean repository and update .gitignore

- Remove build artifacts from git tracking (build/, dist/, __pycache__/, *.spec)
- Updated .gitignore to properly exclude generated files
- Added old_code/ documentation folder
- Updated sample_data.txt to show new 5-field format
- Exclude user-specific conf/app.conf from tracking
This commit is contained in:
NAME
2026-02-13 23:41:34 +02:00
parent 839828340d
commit 6a11cf3d8d
42 changed files with 2897 additions and 54569 deletions

41
.gitignore vendored
View File

@@ -1,12 +1,41 @@
label/
# Build artifacts
build/
dist/
logs/
pdf_backup/
venv/
*.spec
# Python cache
__pycache__/
*.pyc
*.pyo
*.spec
*.pyd
.Python
# Virtual environments
venv/
env/
ENV/
# Application data folders
label/
logs/
pdf_backup/
# User-specific configuration
conf/app.conf
# IDE / Editor
.vscode/
.idea/
*.swp
*.swo
*~
# OS files
.DS_Store
Thumbs.db
desktop.ini
# Python packaging
*.egg-info/
.eggs/
*.egg