tAnboyyy commited on
Commit
8a7ed33
·
1 Parent(s): e22fc6a

add .gitignore to exclude common Python and environment files

Browse files
Files changed (1) hide show
  1. .gitignore +39 -0
.gitignore ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *.pyo
5
+ *.pyd
6
+ *.egg
7
+ *.egg-info/
8
+ dist/
9
+ build/
10
+ .eggs/
11
+
12
+ # Virtual environments
13
+ .venv/
14
+ venv/
15
+ env/
16
+ ENV/
17
+
18
+ # Environment variables
19
+ .env
20
+ .env.*
21
+
22
+ # Jupyter Notebooks
23
+ .ipynb_checkpoints/
24
+
25
+ # macOS
26
+ .DS_Store
27
+ .AppleDouble
28
+ .LSOverride
29
+
30
+ # VS Code
31
+ .vscode/
32
+
33
+ # Logs
34
+ *.log
35
+ logs/
36
+
37
+ # Gradio temp files
38
+ gradio_cached_examples/
39
+ flagged/