# --- pushcv local, per-user data (never commit) ---
# NOTE: keep comments on their own line — Git does not support inline
# (trailing) comments in .gitignore; they become part of the pattern.
pushcv.db
*.db
# per-workspace preferences (e.g. AI salary toggle)
.pushcv.json
# your personal master profile (generated by `pushcv init`)
# profile.example.md is the tracked sample and is intentionally NOT ignored
profile.md
# AI-generated resume & cover-letter drafts
drafts/
# asciinema recordings
*.cast
# rendered video/GIF assets
media/

# --- secrets / env ---
.env
.env.*

# --- scraper debug dumps (pushcv fetch --debug) ---
linkedin_*.html

# --- Python ---
__pycache__/
*.py[cod]
*.egg-info/
build/
dist/
.venv/
venv/
.pytest_cache/
.mypy_cache/
.ruff_cache/

# --- OS / editor ---
.DS_Store
*.swp
.idea/
.vscode/
