mirror of
https://github.com/HKUDS/LightRAG.git
synced 2025-06-26 22:00:19 +00:00
Improve git and docker ignore
This commit is contained in:
parent
4d58ff8bb4
commit
50919442e9
@ -1 +1,63 @@
|
|||||||
.env
|
# Python-related files and directories
|
||||||
|
__pycache__
|
||||||
|
.cache
|
||||||
|
|
||||||
|
# Virtual environment directories
|
||||||
|
*.venv
|
||||||
|
|
||||||
|
# Env
|
||||||
|
env/
|
||||||
|
*.env*
|
||||||
|
.env_example
|
||||||
|
|
||||||
|
# Distribution / build files
|
||||||
|
site
|
||||||
|
dist/
|
||||||
|
build/
|
||||||
|
.eggs/
|
||||||
|
*.egg-info/
|
||||||
|
*.tgz
|
||||||
|
*.tar.gz
|
||||||
|
|
||||||
|
# Exclude siles and folders
|
||||||
|
*.yml
|
||||||
|
.dockerignore
|
||||||
|
Dockerfile
|
||||||
|
Makefile
|
||||||
|
|
||||||
|
# Exclude other projects
|
||||||
|
/tests
|
||||||
|
/scripts
|
||||||
|
|
||||||
|
# Python version manager file
|
||||||
|
.python-version
|
||||||
|
|
||||||
|
# Reports
|
||||||
|
*.coverage/
|
||||||
|
*.log
|
||||||
|
log/
|
||||||
|
*.logfire
|
||||||
|
|
||||||
|
# Cache
|
||||||
|
.cache/
|
||||||
|
.mypy_cache
|
||||||
|
.pytest_cache
|
||||||
|
.ruff_cache
|
||||||
|
.gradio
|
||||||
|
.logfire
|
||||||
|
temp/
|
||||||
|
|
||||||
|
# MacOS-related files
|
||||||
|
.DS_Store
|
||||||
|
|
||||||
|
# VS Code settings (local configuration files)
|
||||||
|
.vscode
|
||||||
|
|
||||||
|
# file
|
||||||
|
TODO.md
|
||||||
|
|
||||||
|
# Exclude Git-related files
|
||||||
|
.git
|
||||||
|
.github
|
||||||
|
.gitignore
|
||||||
|
.pre-commit-config.yaml
|
||||||
|
79
.gitignore
vendored
79
.gitignore
vendored
@ -1,26 +1,61 @@
|
|||||||
__pycache__
|
# Python-related files
|
||||||
*.egg-info
|
__pycache__/
|
||||||
|
*.py[cod]
|
||||||
|
*.egg-info/
|
||||||
|
.eggs/
|
||||||
|
*.tgz
|
||||||
|
*.tar.gz
|
||||||
|
*.ini # Remove config.ini from repo
|
||||||
|
|
||||||
|
# Virtual Environment
|
||||||
|
.venv/
|
||||||
|
env/
|
||||||
|
venv/
|
||||||
|
*.env*
|
||||||
|
.env_example
|
||||||
|
|
||||||
|
# Build / Distribution
|
||||||
|
dist/
|
||||||
|
build/
|
||||||
|
site/
|
||||||
|
|
||||||
|
# Logs / Reports
|
||||||
|
*.log
|
||||||
|
*.logfire
|
||||||
|
*.coverage/
|
||||||
|
log/
|
||||||
|
|
||||||
|
# Caches
|
||||||
|
.cache/
|
||||||
|
.mypy_cache/
|
||||||
|
.pytest_cache/
|
||||||
|
.ruff_cache/
|
||||||
|
.gradio/
|
||||||
|
temp/
|
||||||
|
|
||||||
|
# IDE / Editor Files
|
||||||
|
.idea/
|
||||||
|
.vscode/
|
||||||
|
.vscode/settings.json
|
||||||
|
|
||||||
|
# Framework-specific files
|
||||||
|
local_neo4jWorkDir/
|
||||||
|
neo4jWorkDir/
|
||||||
|
|
||||||
|
# Data & Storage
|
||||||
|
inputs/
|
||||||
|
rag_storage/
|
||||||
|
examples/input/
|
||||||
|
examples/output/
|
||||||
|
|
||||||
|
# Miscellaneous
|
||||||
|
.DS_Store
|
||||||
|
TODO.md
|
||||||
|
ignore_this.txt
|
||||||
|
*.ignore.*
|
||||||
|
|
||||||
|
# Project-specific files
|
||||||
dickens/
|
dickens/
|
||||||
book.txt
|
book.txt
|
||||||
lightrag-dev/
|
lightrag-dev/
|
||||||
.idea/
|
|
||||||
dist/
|
|
||||||
env/
|
|
||||||
local_neo4jWorkDir/
|
|
||||||
neo4jWorkDir/
|
|
||||||
ignore_this.txt
|
|
||||||
.venv/
|
|
||||||
*.ignore.*
|
|
||||||
.ruff_cache/
|
|
||||||
gui/
|
gui/
|
||||||
*.log
|
|
||||||
.vscode
|
|
||||||
inputs
|
|
||||||
rag_storage
|
|
||||||
.env
|
|
||||||
venv/
|
|
||||||
examples/input/
|
|
||||||
examples/output/
|
|
||||||
.DS_Store
|
|
||||||
#Remove config.ini from repo
|
|
||||||
*.ini
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user