SandyBot commited on
Commit
0cecf0b
·
verified ·
1 Parent(s): b158c19

Update .gitignore

Browse files
Files changed (1) hide show
  1. .gitignore +34 -0
.gitignore CHANGED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Environment & secrets
2
+ .env
3
+ .env.local
4
+
5
+ # Vectorstore cache (rebuilt dynamically, don't commit)
6
+ vectorstores/
7
+ src/vectorstores/
8
+
9
+ # Python
10
+ __pycache__/
11
+ *.pyc
12
+ *.pyo
13
+ *.egg-info/
14
+ *.egg
15
+ .Python
16
+ build/
17
+ dist/
18
+
19
+ # Virtual environments
20
+ venv/
21
+ env/
22
+ .venv/
23
+
24
+ # Streamlit
25
+ .streamlit/secrets.toml
26
+
27
+ # Jupyter/Colab leftovers
28
+ .ipynb_checkpoints/
29
+ *.ipynb
30
+
31
+ # OS/editor junk
32
+ .DS_Store
33
+ .vscode/
34
+ .idea/