Mandark-droid commited on
Commit
97decc0
·
1 Parent(s): cdeb1d3

Initial setup: Add .gitignore for Python/Gradio project

Browse files
Files changed (1) hide show
  1. .gitignore +39 -0
.gitignore ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Environment
2
+ .env
3
+ .venv/
4
+ venv/
5
+ env/
6
+
7
+ # Python
8
+ __pycache__/
9
+ *.py[cod]
10
+ *$py.class
11
+ *.so
12
+ .Python
13
+
14
+ # Distribution / packaging
15
+ dist/
16
+ build/
17
+ *.egg-info/
18
+
19
+ # IDEs
20
+ .vscode/
21
+ .idea/
22
+ *.swp
23
+ *.swo
24
+
25
+ # OS
26
+ .DS_Store
27
+ Thumbs.db
28
+
29
+ # Gradio
30
+ flagged/
31
+ gradio_cached_examples/
32
+ .gradio/
33
+
34
+ # Logs
35
+ *.log
36
+
37
+ # Custom scripts (not to be committed)
38
+ push-both.sh
39
+ push-both.bat