Files
usda-vision/.gitignore
Alireza Vaezi 7bc8138f24 Add comprehensive test suite for USDA Vision Camera System
- Implemented main test script to verify system components and functionality.
- Added individual test scripts for camera exposure settings, API changes, camera recovery, maximum FPS, MQTT events, logging, and timezone functionality.
- Created service file for system management and automatic startup.
- Included detailed logging and error handling in test scripts for better diagnostics.
- Ensured compatibility with existing camera SDK and API endpoints.
2025-07-28 17:33:49 -04:00

90 lines
908 B
Plaintext

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
# Virtual environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# Logs
*.log
logs/
usda_vision_system.log*
# Storage (recordings)
storage/
*.avi
*.mp4
*.mov
# Configuration (may contain sensitive data)
config_local.json
config_production.json
# Temporary files
*.tmp
*.temp
.DS_Store
Thumbs.db
# Camera SDK cache
camera_sdk/__pycache__/
# Test outputs
test_output/
*.test
# Backup files
*.backup
*.bak
# OS generated files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# Old test files (keep in repo for reference)
# old tests/
Camera/log/*
# Python cache
*/__pycache__/*
old tests/Camera/log/*
old tests/Camera/Data/*