- Add .mini-rag/ to gitignore (user-specific index data, 1.6MB) - Add .claude/ to gitignore (personal Claude Code settings) - Keep repo lightweight and focused on source code - Users can quickly create their own index with: ./rag-mini index .
108 lines
1.1 KiB
Plaintext
108 lines
1.1 KiB
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
share/python-wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
MANIFEST
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
ENV/
|
|
env/
|
|
.ENV/
|
|
.env
|
|
|
|
# IDEs and editors
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# RAG system specific
|
|
.claude-rag/
|
|
.mini-rag/
|
|
*.lance/
|
|
*.db
|
|
manifest.json
|
|
|
|
# Claude Code specific
|
|
.claude/
|
|
|
|
# Logs and temporary files
|
|
*.log
|
|
*.tmp
|
|
*.temp
|
|
.cache/
|
|
.pytest_cache/
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Personal configuration files
|
|
config.local.yaml
|
|
config.local.yml
|
|
.env.local
|
|
|
|
# Test outputs and temporary directories
|
|
test_output/
|
|
temp_test_*/
|
|
.test_*
|
|
|
|
# Backup files
|
|
*.bak
|
|
*.backup
|
|
*~
|
|
|
|
# Documentation build artifacts
|
|
docs/_build/
|
|
docs/site/
|
|
|
|
# Coverage reports
|
|
htmlcov/
|
|
.coverage
|
|
.coverage.*
|
|
coverage.xml
|
|
*.cover
|
|
*.py,cover
|
|
.hypothesis/
|
|
|
|
# mypy
|
|
.mypy_cache/
|
|
.dmypy.json
|
|
dmypy.json
|
|
|
|
# Jupyter Notebook
|
|
.ipynb_checkpoints
|
|
|
|
# PyCharm
|
|
.idea/
|
|
|
|
# Project specific ignores
|
|
REPOSITORY_SUMMARY.md |