# Git .git .gitignore .history # Python __pycache__ *.py[cod] *$py.class *.so .Python *.egg-info dist build .pytest_cache .coverage htmlcov # Virtual environments .venv venv env ENV # Environment files .env .env.local .env.*.local # IDEs .vscode .idea *.swp *.swo # Documentation (not needed in container) docs/ tests/ *.md !requirements.txt # Docker files docker-compose*.yml Dockerfile .dockerignore # Nginx config (copied separately in production) nginx*.conf # SSL certificates (mounted as volumes) certbot/ # Backups *.sql *.dump backup/ # Logs (generated in container) logs/ *.log # Temporary files *.tmp *.temp *.bak # OS files .DS_Store Thumbs.db # Scripts (not all needed in container) scripts/setup-ssl.sh scripts/check-config.sh # Test files tests/response_*.json