# SmartSolTech .gitignore # Python *.py[cod] *$py.class *.so .Python __pycache__/ *.egg-info/ dist/ build/ *.egg # Virtual Environment .venv/ venv/ env/ ENV/ # Django *.log local_settings.py db.sqlite3 db.sqlite3-journal /media /staticfiles *.pot # Environment variables .env .env.local .env.*.local # IDEs .vscode/ .idea/ *.swp *.swo *~ .DS_Store .history/ # Docker docker-compose.override.yml # Certificates certbot/ # Backups *.sql *.dump backup/ # Temporary files *.tmp *.temp *.bak # Test responses tests/response_*.json # QR Codes (generated) static/qr_codes/ smartsoltech/static/qr_codes/ smartsoltech/staticfiles/qr_codes/ # Logs logs/ *.log # Cache .pytest_cache/ .coverage htmlcov/ .tox/ .mypy_cache/ # OS generated files .DS_Store .DS_Store? ._* .Spotlight-V100 .Trashes ehthumbs.db Thumbs.db