muzakkirhussain011 commited on
Commit
03de8f1
·
1 Parent(s): c99ba59

Update .gitignore to exclude Python cache and temporary files

Browse files

Added comprehensive gitignore rules to prevent binary files from being committed:
- Python cache files (__pycache__/, *.pyc, *.pyo, *.pyd)
- Database files (*.db, *.sqlite, *.sqlite3)
- Environment files (.env, .env.local)
- IDE files (.vscode/, .idea/, *.swp, *.swo)
- OS files (.DS_Store, Thumbs.db)

This prevents future push rejections from HuggingFace Spaces due to binary files.

Files changed (1) hide show
  1. .gitignore +27 -1
.gitignore CHANGED
@@ -1,2 +1,28 @@
1
  # Ignore Python virtual environment
2
- .venv/
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  # Ignore Python virtual environment
2
+ .venv/
3
+
4
+ # Ignore Python cache files
5
+ __pycache__/
6
+ *.pyc
7
+ *.pyo
8
+ *.pyd
9
+ .Python
10
+
11
+ # Ignore database files
12
+ *.db
13
+ *.sqlite
14
+ *.sqlite3
15
+
16
+ # Ignore environment files
17
+ .env
18
+ .env.local
19
+
20
+ # Ignore IDE files
21
+ .vscode/
22
+ .idea/
23
+ *.swp
24
+ *.swo
25
+
26
+ # Ignore OS files
27
+ .DS_Store
28
+ Thumbs.db