# World OS AutoCode - Git Ignore

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

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

# IDEs and editors
.idea/
.vscode/
*.swp
*.swo
*~
.DS_Store
.project
.classpath
.settings/
*.sublime-workspace
*.sublime-project

# Testing
.coverage
.coverage.*
.pytest_cache/
.tox/
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
htmlcov/

# Type checking
.mypy_cache/
.dmypy.json
dmypy.json

# Linting
.ruff_cache/

# Node.js / pnpm
node_modules/
.pnpm/
.pnpm-debug.log*
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnp.cjs
.pnp.loader.mjs

# Frontend build outputs (Vite / React / TypeScript)
web/frontend/dist/
web/frontend/build/
*.tsbuildinfo
.vite/

# Documentation
docs/site/
site/

# Build artifacts
*.log
*.pot
local_settings.py
db.sqlite3
db.sqlite3-journal

# Secrets and credentials
.env
.env.local
.env.*.local
secrets.yaml
secrets.yml
*.key
*.pem
*.crt

# Feishu/lark integration
feishu_token.txt
lark_token.txt

# Temporary files
*.tmp
*.temp
*.cache
.cache/

# OS files
Thumbs.db
ehthumbs.db
Desktop.ini
$RECYCLE.BIN/

# Backup files
*.bak
*.backup
*.orig
*.rej

# Package manager files
poetry.lock
Pipfile.lock

# Docker
.docker/
docker-compose.override.yml

# Kubernetes
*.kubeconfig
.kube/

# CI/CD
.circleci/local-config.yml

# Profiling
*.prof
*.profile
prof/
