Discovered while manually verifying the DOCX/ODT/Pages upload flow — .playwright-mcp/ (fixtures, screenshots) wasn't ignored and risked accidental commits of test artifacts.
34 lines
398 B
Text
34 lines
398 B
Text
# Secrets and local config
|
|
.env
|
|
config/llm.yaml
|
|
CLAUDE.md
|
|
|
|
# Data
|
|
data/
|
|
books/
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
.pytest_cache/
|
|
*.egg-info/
|
|
dist/
|
|
.eggs/
|
|
|
|
# Node
|
|
web/node_modules/
|
|
web/dist/
|
|
|
|
# Docker override (local dev extras)
|
|
compose.override.yml
|
|
|
|
# macOS
|
|
.DS_Store
|
|
|
|
# Logs and runtime files
|
|
*.log
|
|
*.db
|
|
|
|
# Playwright MCP scratch dir (test fixtures, screenshots — never commit)
|
|
.playwright-mcp/
|