Files
duck-stain-ocr/.gitignore
bartool eaa7c75868 Add main application structure and logging configuration
- Implement main application entry point in duck-ocr.py
- Create logging configuration in logging_config.py
- Add video streaming functionality in camera.py
- Introduce main window UI in main_window.py
- Include SVG assets for UI buttons and icons
- Update .gitignore to exclude log files
- Add placeholder .gitkeep files for empty directories
2026-05-10 13:00:12 +02:00

32 lines
359 B
Plaintext

# Python
__pycache__/
*.py[cod]
*$py.class
.pytest_cache/
.ruff_cache/
.mypy_cache/
# Virtual environments
.venv/
.venv-*/
venv/
env/
# Local/runtime data
captures/photos/*
captures/videos/*
!captures/photos/.gitkeep
!captures/videos/.gitkeep
!models/.gitkeep
# OS/editor
.DS_Store
.idea/
.vscode/
# Ultralytics/runtime caches
runs/
*.onnx
*.engine
*.log