zach commited on
Commit
a61d782
·
1 Parent(s): 75da15d

update .gitignore file

Browse files
Files changed (1) hide show
  1. .gitignore +37 -1
.gitignore CHANGED
@@ -1 +1,37 @@
1
- .env
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *.pyo
5
+ *.pyd
6
+
7
+ # Virtual environment
8
+ venv/
9
+ gradio-env/ # Add your virtual environment directory here if named differently
10
+
11
+ # Distribution / Packaging
12
+ build/
13
+ dist/
14
+ *.egg-info/
15
+
16
+ # Environment variables
17
+ .env
18
+
19
+ # Logs
20
+ *.log
21
+
22
+ # IDE settings (e.g., VSCode, PyCharm)
23
+ .vscode/
24
+ .idea/
25
+ *.swp
26
+ *.swo
27
+ *.swn
28
+
29
+ # Jupyter Notebook checkpoints (if applicable)
30
+ .ipynb_checkpoints/
31
+
32
+ # System files
33
+ .DS_Store
34
+ Thumbs.db
35
+
36
+ # Python cache
37
+ *.cache