This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

mcp-nixos / .gitignore
1.2 kB 110 lines
1# Python 2__pycache__/ 3*.py[cod] 4*$py.class 5*.so 6.Python 7build/ 8develop-eggs/ 9dist/ 10downloads/ 11eggs/ 12.eggs/ 13lib/ 14lib64/ 15parts/ 16sdist/ 17var/ 18wheels/ 19*.egg-info/ 20.installed.cfg 21*.egg 22MANIFEST 23 24# Virtual Environment 25.venv/ 26venv/ 27ENV/ 28 29# Unit test / coverage reports 30htmlcov/ 31.tox/ 32.nox/ 33.coverage 34.coverage.* 35.cache 36nosetests.xml 37coverage.xml 38*.cover 39.hypothesis/ 40.pytest_cache/ 41mcp_nixos_test_cache/ 42*test_cache*/ 43 44# Environments 45.env 46.env.local 47.venv 48env/ 49venv/ 50ENV/ 51env.bak/ 52venv.bak/ 53 54# Nix 55.direnv/ 56result 57 58# IDE 59.idea/ 60*.swp 61*.swo 62*~ 63.vscode/ 64.zed/ 65 66# MCP local configuration 67.mcp-nix.json 68 69# Misc 70temp 71tmp 72 73# UV (not used - flake only) 74uv.lock 75uv-*.lock 76.aider* 77.pypirc 78mcp-completion-docs.md 79TODO.md 80 81# Wily 82.wily/ 83 84# Logs 85*.log 86*.DS_Store 87 88# Pi coding agent extensions (editor-only deps; Pi resolves at runtime) 89/.pi/node_modules/ 90/.pi/package-lock.json 91 92# Website (VitePress) 93/website/node_modules/ 94/website/out/ 95/website/.vitepress/cache/ 96/website/.vitepress/dist/ 97/website/.vercel/ 98/website/.env*.local 99/website/npm-debug.log* 100/website/yarn-debug.log* 101/website/yarn-error.log* 102/website/pnpm-debug.log* 103/website/.pnpm-store/ 104/website/.DS_Store 105/website/*.pem 106 107# Claude Code runtime state 108.claude/scheduled_tasks.lock 109 110reference-mcp-coroot/