# ReadyData Cross-Language SDK .gitignore

# ==================================
# Node.js / TypeScript (sdk-ts/)
# ==================================

# Dependencies
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Build outputs
dist/
build/
*.tsbuildinfo

# Coverage reports
coverage/
*.lcov

# Environment variables
.env
.env.local
.env.development.local
.env.test.local
.env.production.local

# IDEs and editors
.vscode/
.idea/
*.swp
*.swo
*~

# OS generated files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

# ==================================
# Python (sdk-py/)
# ==================================

# Virtual environments
sdk-py/.venv/
sdk-py/venv/
sdk-py/env/
sdk-py/.env/

# Python compiled files
__pycache__/
*.py[cod]
*$py.class
*.so

# Distribution / packaging
sdk-py/build/
sdk-py/develop-eggs/
sdk-py/dist/
sdk-py/downloads/
sdk-py/eggs/
sdk-py/.eggs/
sdk-py/lib/
sdk-py/lib64/
sdk-py/parts/
sdk-py/sdist/
sdk-py/var/
sdk-py/wheels/
sdk-py/share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
*.manifest
*.spec

# Unit test / coverage reports
.pytest_cache/
.coverage
.coverage.*
htmlcov/
.tox/
.nox/
coverage.xml
*.cover
*.py,cover
.hypothesis/

# Jupyter Notebook
.ipynb_checkpoints

# IPython
profile_default/
ipython_config.py

# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# Pyre type checker
.pyre/

# pytype static type analyzer
.pytype/

# ==================================
# Generated Code (keep source, ignore generated)
# ==================================

# Keep hand-crafted types but ignore auto-generated ones
# sdk-ts/src/generated/auto-generated-*.ts
# sdk-py/src/readydata/auto_generated_*.py

# ==================================
# Logs and temporary files
# ==================================

# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
.pnpm-debug.log*

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Temporary folders
tmp/
temp/

# ==================================
# Testing and CI
# ==================================

# Test outputs
test-results/
test-output/

# ==================================
# Documentation and Examples
# ==================================

# Keep all examples and documentation
# (We want these in the repo)

# ==================================
# Project-specific
# ==================================

# Keep schemas, contracts, and examples
# (These are the source of truth and should be versioned)

# Local configuration overrides
.local/
local.json
config.local.*

# Development databases (if any)
*.sqlite
*.sqlite3
*.db

# Backup files
*.bak
*.backup
*.old

# Archive files
*.zip
*.tar.gz
*.rar

# ==================================
# Security
# ==================================

# API keys and secrets (should never be committed)
.env.*
secrets/
*.key
*.pem
*.p12
*.keystore

# PyPI configuration files
.pypirc
sdk-py/.pypirc

# ==================================
# Performance profiling
# ==================================

# Profiling output
*.prof
*.trace

# ==================================
# Package managers lockfiles
# ==================================

# Keep lockfiles for reproducible builds
# package-lock.json  # Keep this
# yarn.lock          # Keep this
# poetry.lock        # Keep this

# But ignore some temporary files
.yarn/
.pnp.*