# ๐Ÿš€ Docker ignore patterns for optimal build performance # ๐Ÿ“ Development environments .venv/ venv/ env/ __pycache__/ *.pyc *.pyo *.pyd .mypy_cache/ .pytest_cache/ .coverage htmlcov/ # ๐Ÿงช Testing and temporary files tests/ test-results/ *_test.py test_*.py .ruff_cache/ .pytest_cache/ # ๐Ÿ“ Documentation and metadata *.md README* CHANGELOG* LICENSE* docs/ .gitignore .dockerignore # ๐Ÿ”ง Development tools .git/ .github/ .vscode/ .idea/ *.swp *.swo *~ # ๐ŸŽฏ Build artifacts and cache dist/ build/ *.egg-info/ node_modules/ .cache/ dump/ # ๐Ÿ“Š Logs and databases *.log *.db *.sqlite *.sqlite3 dev-server.pid # ๐Ÿ” Environment and secrets .env .env.* !.env.example *.key *.pem # ๐ŸŽจ Frontend development panel/node_modules/ *.css.map *.js.map # ๐Ÿงน OS and editor files .DS_Store Thumbs.db *.tmp *.temp