Improve git and docker ignore
Browse files- .dockerignore +63 -1
- .gitignore +55 -20
.dockerignore
CHANGED
|
@@ -1 +1,63 @@
|
|
| 1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Python-related files and directories
|
| 2 |
+
__pycache__
|
| 3 |
+
.cache
|
| 4 |
+
|
| 5 |
+
# Virtual environment directories
|
| 6 |
+
*.venv
|
| 7 |
+
|
| 8 |
+
# Env
|
| 9 |
+
env/
|
| 10 |
+
*.env*
|
| 11 |
+
.env_example
|
| 12 |
+
|
| 13 |
+
# Distribution / build files
|
| 14 |
+
site
|
| 15 |
+
dist/
|
| 16 |
+
build/
|
| 17 |
+
.eggs/
|
| 18 |
+
*.egg-info/
|
| 19 |
+
*.tgz
|
| 20 |
+
*.tar.gz
|
| 21 |
+
|
| 22 |
+
# Exclude siles and folders
|
| 23 |
+
*.yml
|
| 24 |
+
.dockerignore
|
| 25 |
+
Dockerfile
|
| 26 |
+
Makefile
|
| 27 |
+
|
| 28 |
+
# Exclude other projects
|
| 29 |
+
/tests
|
| 30 |
+
/scripts
|
| 31 |
+
|
| 32 |
+
# Python version manager file
|
| 33 |
+
.python-version
|
| 34 |
+
|
| 35 |
+
# Reports
|
| 36 |
+
*.coverage/
|
| 37 |
+
*.log
|
| 38 |
+
log/
|
| 39 |
+
*.logfire
|
| 40 |
+
|
| 41 |
+
# Cache
|
| 42 |
+
.cache/
|
| 43 |
+
.mypy_cache
|
| 44 |
+
.pytest_cache
|
| 45 |
+
.ruff_cache
|
| 46 |
+
.gradio
|
| 47 |
+
.logfire
|
| 48 |
+
temp/
|
| 49 |
+
|
| 50 |
+
# MacOS-related files
|
| 51 |
+
.DS_Store
|
| 52 |
+
|
| 53 |
+
# VS Code settings (local configuration files)
|
| 54 |
+
.vscode
|
| 55 |
+
|
| 56 |
+
# file
|
| 57 |
+
TODO.md
|
| 58 |
+
|
| 59 |
+
# Exclude Git-related files
|
| 60 |
+
.git
|
| 61 |
+
.github
|
| 62 |
+
.gitignore
|
| 63 |
+
.pre-commit-config.yaml
|
.gitignore
CHANGED
|
@@ -1,26 +1,61 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
.
|
| 7 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
env/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
local_neo4jWorkDir/
|
| 10 |
neo4jWorkDir/
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
gui/
|
| 16 |
-
*.log
|
| 17 |
-
.vscode
|
| 18 |
-
inputs
|
| 19 |
-
rag_storage
|
| 20 |
-
.env
|
| 21 |
-
venv/
|
| 22 |
examples/input/
|
| 23 |
examples/output/
|
|
|
|
|
|
|
| 24 |
.DS_Store
|
| 25 |
-
|
| 26 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Python-related files
|
| 2 |
+
__pycache__/
|
| 3 |
+
*.py[cod]
|
| 4 |
+
*.egg-info/
|
| 5 |
+
.eggs/
|
| 6 |
+
*.tgz
|
| 7 |
+
*.tar.gz
|
| 8 |
+
*.ini # Remove config.ini from repo
|
| 9 |
+
|
| 10 |
+
# Virtual Environment
|
| 11 |
+
.venv/
|
| 12 |
env/
|
| 13 |
+
venv/
|
| 14 |
+
*.env*
|
| 15 |
+
.env_example
|
| 16 |
+
|
| 17 |
+
# Build / Distribution
|
| 18 |
+
dist/
|
| 19 |
+
build/
|
| 20 |
+
site/
|
| 21 |
+
|
| 22 |
+
# Logs / Reports
|
| 23 |
+
*.log
|
| 24 |
+
*.logfire
|
| 25 |
+
*.coverage/
|
| 26 |
+
log/
|
| 27 |
+
|
| 28 |
+
# Caches
|
| 29 |
+
.cache/
|
| 30 |
+
.mypy_cache/
|
| 31 |
+
.pytest_cache/
|
| 32 |
+
.ruff_cache/
|
| 33 |
+
.gradio/
|
| 34 |
+
temp/
|
| 35 |
+
|
| 36 |
+
# IDE / Editor Files
|
| 37 |
+
.idea/
|
| 38 |
+
.vscode/
|
| 39 |
+
.vscode/settings.json
|
| 40 |
+
|
| 41 |
+
# Framework-specific files
|
| 42 |
local_neo4jWorkDir/
|
| 43 |
neo4jWorkDir/
|
| 44 |
+
|
| 45 |
+
# Data & Storage
|
| 46 |
+
inputs/
|
| 47 |
+
rag_storage/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 48 |
examples/input/
|
| 49 |
examples/output/
|
| 50 |
+
|
| 51 |
+
# Miscellaneous
|
| 52 |
.DS_Store
|
| 53 |
+
TODO.md
|
| 54 |
+
ignore_this.txt
|
| 55 |
+
*.ignore.*
|
| 56 |
+
|
| 57 |
+
# Project-specific files
|
| 58 |
+
dickens/
|
| 59 |
+
book.txt
|
| 60 |
+
lightrag-dev/
|
| 61 |
+
gui/
|