# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# Virtual environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# IDE
.vscode/
.idea/
*.swp
*.swo
*.swn
.DS_Store

# Git
.git/
.gitignore
.gitattributes
.github/

# Documentation (but keep README.md and LICENSE for Docker build)
docs/
CONTRIBUTING.md
CHANGELOG.md
README_zh.md

# Data directories
data/
*.db
*.sqlite
*.sqlite3

# Logs
*.log
logs/

# Node modules (frontend)
node_modules/
vibe_surf/frontend/node_modules/
vibe_surf/frontend/.next/
vibe_surf/frontend/out/
vibe_surf/frontend/build/

# Exclude built frontend (will be rebuilt in Docker)
vibe_surf/backend/frontend/

# Temporary files
tmp/
temp/
*.tmp

# Docker
Dockerfile
docker-compose.yml
.dockerignore

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

# Test files
tests/
test/
*.test.js
*.spec.js
coverage/
.coverage
htmlcov/
.pytest_cache/
.tox/

# OS
Thumbs.db
.DS_Store

# Environment files
.env*
!.env.example

# Cache
.cache/
.mypy_cache/
.ruff_cache/
.hypothesis/

# Build artifacts
*.whl
*.tar.gz

# uv lock file
uv.lock
