Spaces:
Sleeping
Sleeping
Ajey95
commited on
Commit
·
5f215bf
1
Parent(s):
44dba8b
Fix: Ignore tmp folder and clean repository
Browse files- .gitignore +5 -4
.gitignore
CHANGED
@@ -1,11 +1,12 @@
|
|
1 |
# Ignore the Python virtual environment
|
2 |
rakhi/
|
3 |
|
|
|
|
|
|
|
|
|
4 |
# Ignore other common Python files
|
5 |
__pycache__/
|
6 |
|
7 |
# Ignore environment variables file
|
8 |
-
.env
|
9 |
-
|
10 |
-
# Ignore the generated FAISS index
|
11 |
-
faiss_index/
|
|
|
1 |
# Ignore the Python virtual environment
|
2 |
rakhi/
|
3 |
|
4 |
+
# Ignore the generated FAISS index and other temp files
|
5 |
+
tmp/
|
6 |
+
faiss_index/
|
7 |
+
|
8 |
# Ignore other common Python files
|
9 |
__pycache__/
|
10 |
|
11 |
# Ignore environment variables file
|
12 |
+
.env
|
|
|
|
|
|