# Git .git .gitignore # Python __pycache__/ *.py[cod] *$py.class *.so .Python env/ build/ develop-eggs/ dist/ downloads/ eggs/ .eggs/ lib/ lib64/ parts/ sdist/ var/ *.egg-info/ .installed.cfg *.egg # Virtual Environment venv/ ENV/ # IDE .idea/ .vscode/ *.swp *.swo # Logs *.log # Local development .env .env.local .env.*.local # Docker Dockerfile* docker-compose* .dockerignore # Tests tests/ test/ .pytest_cache/ .coverage htmlcov/