# Git .git .gitignore # Python __pycache__ *.py[cod] *$py.class *.so .Python *.egg-info .eggs dist build *.egg # Virtual environment venv .venv env .env.local # IDE .vscode .idea *.swp *.swo # Tests .pytest_cache .coverage htmlcov # Documentation *.md docs/ # Local files *.log *.sqlite3 db.sqlite3 # Media and static (монтируются как volumes) myproject/media/* myproject/staticfiles/* # Temporary files *.tmp *.temp .DS_Store Thumbs.db # Windows batch files *.bat # Keep important config files !myproject/.env.example