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

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

# Backend - uv
.python-version
uv.lock

# Backend - Database & Data
*.db
*.sqlite
*.sqlite3
user_data/
backups/

# Backend - Logs & Cache
backend.log
*.log
.coverage
htmlcov/
.pytest_cache/
.tox/
.cache

# Frontend - Node.js/React
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*

# Frontend - Build outputs
build/
dist/
.next/
out/

# Frontend - Environment & Config
.env.local
.env.development.local
.env.test.local
.env.production.local

# Frontend - Logs
frontend.log
*.log

# Frontend - Cache & Temp
.cache/
.parcel-cache/
.tmp/
.temp/

# Frontend - IDE/Editor specific
.vscode/
.idea/
*.swp
*.swo
*~

# Testing
coverage/
.nyc_output/
*.lcov

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

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env
.env.test

# parcel-bundler cache (https://parceljs.org/)
.cache
.parcel-cache

# TypeScript cache
*.tsbuildinfo

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Stores VSCode versions used for testing VSCode extensions
.vscode-test

# yarn v2
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*

# macOS
.DS_Store
.AppleDouble
.LSOverride

# Windows
Thumbs.db
Thumbs.db:encryptable
ehthumbs.db
ehthumbs_vista.db
*.stackdump
[Dd]esktop.ini
$RECYCLE.BIN/
*.cab
*.msi
*.msix
*.msm
*.msp
*.lnk

# Linux
*~
.fuse_hidden*
.directory
.Trash-*
.nfs*

# LDaCA Specific
# Backend specific logs and data
backend/backend.log
backend/data/user*/

# Frontend specific logs and builds  
frontend/frontend.log
frontend/build/
frontend/dist/

# Development artifacts from docframe/docworkspace integration
*.pkl
*.joblib
.spacy/
nltk_data/

