rudra0410hf commited on
Commit
7c5900e
·
verified ·
1 Parent(s): b7582dc

Update .gitignore

Browse files
Files changed (1) hide show
  1. .gitignore +25 -15
.gitignore CHANGED
@@ -1,15 +1,25 @@
1
- # Python
2
- *.pyc
3
- *.pyo
4
- __pycache__/
5
-
6
- # Environment Variables
7
- .env
8
-
9
- # Streamlit
10
- .streamlit/
11
-
12
- # Virtual Environments
13
- venv/
14
- .env/
15
- *.venv
 
 
 
 
 
 
 
 
 
 
 
1
+ # Python bytecode
2
+ *.pyc
3
+ *.pyo
4
+ __pycache__/
5
+
6
+ # Virtual environment
7
+ venv/
8
+ .env/
9
+ *.venv
10
+
11
+ # Environment variables
12
+ .env
13
+
14
+ # Streamlit-specific files
15
+ .streamlit/
16
+
17
+ # Ignore log and cache files
18
+ *.log
19
+ *.cache
20
+ __pycache__/
21
+ *.sqlite
22
+
23
+ # Hugging Face Space-specific files (uncomment if needed)
24
+ # dataset/
25
+ # models/