lochn commited on
Commit
021aa67
·
verified ·
1 Parent(s): 9729a57

Upload gitignore.txt

Browse files
Files changed (1) hide show
  1. gitignore.txt +76 -0
gitignore.txt ADDED
@@ -0,0 +1,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+ *.so
6
+ .Python
7
+ build/
8
+ develop-eggs/
9
+ dist/
10
+ downloads/
11
+ eggs/
12
+ .eggs/
13
+ lib/
14
+ lib64/
15
+ parts/
16
+ sdist/
17
+ var/
18
+ wheels/
19
+ *.egg-info/
20
+ .installed.cfg
21
+ *.egg
22
+ MANIFEST
23
+
24
+ # Virtual environments
25
+ .env
26
+ .venv
27
+ env/
28
+ venv/
29
+ ENV/
30
+ env.bak/
31
+ venv.bak/
32
+
33
+ # IDE
34
+ .vscode/
35
+ .idea/
36
+ *.swp
37
+ *.swo
38
+ *~
39
+
40
+ # OS
41
+ .DS_Store
42
+ .DS_Store?
43
+ ._*
44
+ .Spotlight-V100
45
+ .Trashes
46
+ ehthumbs.db
47
+ Thumbs.db
48
+
49
+ # Temporary files
50
+ *.tmp
51
+ *.temp
52
+ temp/
53
+ tmp/
54
+
55
+ # Video processing temporary files
56
+ chunks/
57
+ frames/
58
+ *.wav
59
+ *.mp4
60
+ *.avi
61
+ *.mov
62
+
63
+ # Logs
64
+ *.log
65
+ logs/
66
+
67
+ # Model cache
68
+ .cache/
69
+ models/
70
+
71
+ # Gradio
72
+ gradio_cached_examples/
73
+ flagged/
74
+
75
+ # Hugging Face
76
+ .huggingface/