# Git .git .gitignore # Environment files (secrets!) .env .env.local .env.*.local # Python __pycache__ *.py[cod] *$py.class *.so .Python .venv venv/ ENV/ # IDE .idea/ .vscode/ *.swp *.swo # Logs *.log logs/ # Test .pytest_cache/ .coverage htmlcov/ # Build build/ dist/ *.egg-info/ # Docker Dockerfile docker-compose*.yml .dockerignore # Documentation *.md !requirements.txt # OS .DS_Store Thumbs.db