Rulga commited on
Commit
383321a
·
1 Parent(s): 231b18c

chore: update .gitignore to include environment variables and Python cache files

Browse files
Files changed (1) hide show
  1. .gitignore +9 -9
.gitignore CHANGED
@@ -1,13 +1,13 @@
1
- /.streamlit
2
- *.env
3
- .env
4
- venv
5
  .streamlit/secrets.toml
6
 
7
- # Keep the folders but ignore their contents except .gitkeep
8
- chat_history/*
9
- !chat_history/.gitkeep
 
 
 
 
 
10
 
11
- vector_store/*
12
- !vector_store/.gitkeep
13
 
 
1
+ # Secrets
 
 
 
2
  .streamlit/secrets.toml
3
 
4
+ # Environment variables
5
+ .env
6
+
7
+ # Python
8
+ __pycache__/
9
+ *.py[cod]
10
+ *$py.class
11
+
12
 
 
 
13