petter2025 commited on
Commit
9722336
·
verified ·
1 Parent(s): 2c38b03

Create .gitignore

Browse files
Files changed (1) hide show
  1. .gitignore +37 -0
.gitignore ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+ *.so
6
+
7
+ # Virtual Environment
8
+ venv/
9
+ env/
10
+ .venv
11
+
12
+ # Testing
13
+ .pytest_cache/
14
+ .coverage
15
+ htmlcov/
16
+
17
+ # Environment
18
+ .env
19
+
20
+ # Data
21
+ data/
22
+ *.faiss
23
+ *.index
24
+ incident_vectors.index
25
+ incident_texts.json
26
+
27
+ # Logs
28
+ logs/
29
+ *.log
30
+
31
+ # IDE
32
+ .vscode/
33
+ .idea/
34
+ *.swp
35
+
36
+ # OS
37
+ .DS_Store