# ============================================================
# Qpher PQC Security Cloud — .gitignore
# ============================================================

# --- Python ---
__pycache__/
*.py[cod]
*$py.class
*.so
*.egg-info/
dist/
build/
*.egg
.eggs/

# --- Virtual Environments ---
venv/
.venv/
env/
ENV/

# --- IDE ---
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
Thumbs.db

# --- Testing ---
.coverage
.coverage.*
htmlcov/
.pytest_cache/
.mypy_cache/
.ruff_cache/

# --- Environment / Secrets ---
.env
.env.local
.env.production
.env.staging
.env.agents
# NOTE: .env.example IS tracked (template only, no real secrets)

# --- Database ---
*.db
*.sqlite3

# --- Logs ---
logs/
*.log
audit_logs/

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

# --- Node.js (frontend apps) ---
node_modules/
.next/
.docusaurus/
out/
.turbo/
.vercel/

# --- KMS Key Files (NEVER commit private keys) ---
kms_keys/
*.pem
*.key

# --- Gmail Agent Credentials ---
scripts/gmail-agent/token.json
scripts/gmail-agent/credentials.json

# --- OS ---
Desktop.ini

# --- Build artifacts ---
*.tar.gz
*.whl

# --- Jupyter ---
.ipynb_checkpoints/

# --- Claude Code ---
.claude/
.vercel
