# Git
.git
.gitignore
.gitattributes

# Docker
Dockerfile
Dockerfile.base
docker/
.dockerignore

# IDE
.vscode/
.idea/
*.swp
*.swo
*~

# Logs
logs/
*.log
gunicorn_log/

# Python
__pycache__/
*.pyc
*.pyo
*.egg-info/
.eggs/
*.egg

# Virtual env (should not be in image)
venv/
.venv/

# OS
.DS_Store
Thumbs.db

# Docker build artifacts
*.tar
*.tar.gz

# Env files
.env
.env.*
!.env.example

# Test files
tests/
test_*.py
*_test.py

# CI/CD
.github/
.gitlab-ci.yml

# Documentation
*.md
LICENSE

# Temporary files
tmp/
temp/
*.tmp
