Spaces:
Running
Running
Add .gitignore.
Browse files- .gitignore +24 -0
.gitignore
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Ignore Google Cloud credentials and API keys
|
2 |
+
.streamlit/secrets.toml
|
3 |
+
temp_credentials.json
|
4 |
+
|
5 |
+
# Ignore downloaded files (FAISS, metadata, embeddings)
|
6 |
+
metadata.jsonl
|
7 |
+
faiss_index.faiss
|
8 |
+
text_chunks.txt
|
9 |
+
all_embeddings.npy
|
10 |
+
|
11 |
+
# Python cache files
|
12 |
+
__pycache__/
|
13 |
+
*.pyc
|
14 |
+
*.pyo
|
15 |
+
*.pyd
|
16 |
+
*.ipynb_checkpoints/
|
17 |
+
|
18 |
+
# Virtual environment (if using one locally)
|
19 |
+
venv/
|
20 |
+
.env
|
21 |
+
|
22 |
+
# Logs & temp files
|
23 |
+
logs/
|
24 |
+
*.log
|