# Environment and secrets .env .env.* !.env.example # Python __pycache__/ *.py[cod] *$py.class .python-version .venv/ venv/ env/ ENV/ # Python packaging and build output build/ dist/ *.egg-info/ .eggs/ pip-wheel-metadata/ .playwright-mcp/ # Test and coverage output .pytest_cache/ .coverage .coverage.* htmlcov/ coverage.xml # Type checker and linter caches .mypy_cache/ .ruff_cache/ .pyre/ .pytype/ # FastAPI/Uvicorn/runtime files *.log *.pid data/ *.sqlite3 *.sqlite3-* # Frontend dependencies and build artifacts node_modules/ npm-debug.log* yarn-debug.log* yarn-error.log* pnpm-debug.log* web/dist/ web/build/ # IDE and OS files .idea/ .vscode/ *.swp *.swo .DS_Store Thumbs.db desktop.ini