- Remove debug artifacts from git tracking: - .playwright-mcp/ (screenshot artifacts) - logs/ (development task logs) - test_rag_env/ (test data fixtures) - docs/archives/ (internal planning docs) - docs/diff_hku/ (merge planning docs) - Remove unnecessary root-level scripts: - check_import.py, debug_env.py, simple_debug_env.py - debug_postgres_graph.py, write_script.py - test_multitenant.sh, build-and-push.sh - Update .gitignore with proper exclusions - Fix documentation accuracy: - 0001-quick-start.md: correct LightRAG initialization examples - 0002-architecture-overview.md: fix version and links - 0003-api-reference.md: fix /documents/upload route name - Update version to 1.4.9.2 across all docs - Fix lint issues: - Add noqa for E402 in test file with sys.path manipulation - Remove unused imports All 245 tests pass, ruff check clean
83 lines
1 KiB
Text
83 lines
1 KiB
Text
# Python-related files
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.egg-info/
|
|
.eggs/
|
|
*.tgz
|
|
*.tar.gz
|
|
*.ini
|
|
|
|
# Virtual Environment
|
|
.venv/
|
|
venv/
|
|
|
|
# Enviroment Variable Files
|
|
.env
|
|
|
|
# Build / Distribution
|
|
dist/
|
|
build/
|
|
site/
|
|
|
|
# Logs / Reports
|
|
*.log
|
|
*.log.*
|
|
*.logfire
|
|
*.coverage/
|
|
log/
|
|
|
|
# Caches
|
|
.cache/
|
|
.mypy_cache/
|
|
.pytest_cache/
|
|
.ruff_cache/
|
|
.gradio/
|
|
.history/
|
|
temp/
|
|
|
|
# IDE / Editor Files
|
|
.idea/
|
|
.vscode/
|
|
.vscode/settings.json
|
|
|
|
# Framework-specific files
|
|
local_neo4jWorkDir/
|
|
neo4jWorkDir/
|
|
|
|
# Data & Storage
|
|
inputs/
|
|
output/
|
|
rag_storage/
|
|
data/
|
|
|
|
# Evaluation results
|
|
lightrag/evaluation/results/
|
|
|
|
# Miscellaneous
|
|
.DS_Store
|
|
TODO.md
|
|
ignore_this.txt
|
|
*.ignore.*
|
|
|
|
# Project-specific files
|
|
/dickens*/
|
|
/book.txt
|
|
download_models_hf.py
|
|
|
|
# Frontend build output (built during PyPI release)
|
|
/lightrag/api/webui/
|
|
|
|
# unit-test files (root level only, not tests/ directory)
|
|
/test_*
|
|
|
|
# Cline files
|
|
memory-bank
|
|
|
|
# Playwright MCP screenshots (debugging artifacts)
|
|
.playwright-mcp/
|
|
|
|
# Development logs (task logs, session logs)
|
|
logs/
|
|
|
|
# Test data fixtures (generated during testing)
|
|
test_rag_env/
|