Zwounds commited on
Commit
007557e
·
verified ·
1 Parent(s): 4b4957c

Upload .gitignore

Browse files
Files changed (1) hide show
  1. .gitignore +38 -0
.gitignore ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Virtual Environment
2
+ .venv/
3
+ venv/
4
+ ENV/
5
+
6
+ # Python cache files
7
+ __pycache__/
8
+ *.pyc
9
+ *.pyo
10
+ *.pyd
11
+
12
+ # Database
13
+ chroma_db/
14
+ *.sqlite3
15
+
16
+ # Logs and temporary files
17
+ *.log
18
+ *.tmp
19
+ extracted_content_debug.jsonl
20
+
21
+ # OS-specific files
22
+ .DS_Store
23
+ Thumbs.db
24
+
25
+ # IDE / Editor specific files
26
+ .vscode/
27
+ .idea/
28
+ *.sublime-project
29
+ *.sublime-workspace
30
+
31
+ # Distribution / packaging
32
+ dist/
33
+ build/
34
+ *.egg-info/
35
+ *.egg
36
+
37
+ # Environment variables
38
+ .env