# Git .git .gitignore # Python __pycache__ *.py[cod] *$py.class *.so .Python .venv venv/ ENV/ env/ .eggs/ *.egg-info/ *.egg # IDE .idea/ .vscode/ *.swp *.swo # Testing .coverage htmlcov/ .pytest_cache/ .tox/ # Local development .env .env.* *.sqlite3 db.sqlite3 media/ staticfiles/ # Documentation *.md docs/ # Misc *.log .DS_Store Thumbs.db