yangdx commited on
Commit
0564adf
·
1 Parent(s): c952e16

Delete inline comment about config.ini

Browse files
Files changed (1) hide show
  1. .gitignore +36 -5
.gitignore CHANGED
@@ -1,8 +1,39 @@
1
- __pycache__
2
- *.egg-info
3
- dickens/
4
- book.txt
5
- lightrag-dev/
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  .idea/
7
  dist/
8
  env/
 
1
+ # Python-related files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *.egg-info/
5
+ .eggs/
6
+ *.tgz
7
+ *.tar.gz
8
+ *.ini
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
  dist/
39
  env/