MogensR commited on
Commit
ee2e0b8
·
1 Parent(s): 8a932f5

Update .gitignore

Browse files
Files changed (1) hide show
  1. .gitignore +107 -30
.gitignore CHANGED
@@ -1,42 +1,119 @@
1
- # Python cache and temporary files
2
- __pycache__
3
- *.pyc
4
- *.pyo
5
- *.pyd
 
 
 
 
6
  .Python
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
 
8
- # Virtual environment
9
- venv
10
- env
11
 
12
- # Git
13
- .git
14
- .gitignore
 
 
 
 
 
 
 
 
15
 
16
- # Logs and databases
17
- *.log
18
- *.sqlite
 
 
 
 
 
 
 
 
 
 
 
19
 
20
- # OS-specific files
21
  .DS_Store
 
 
 
 
 
22
  Thumbs.db
23
 
24
- # IDE-specific files
25
- .idea
26
- .vscode
27
 
28
- # Build artifacts
29
- dist
30
- build
31
- *.egg-info
 
 
 
 
32
 
33
- # Temporary files
34
- *.tmp
35
- *.swp
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
36
 
37
- # Documentation
38
- *.md
39
- README.md
 
 
 
40
 
41
- # Example videos (if you have a separate directory)
42
- example_video/
 
 
 
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
  .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ *.egg-info/
24
+ .installed.cfg
25
+ *.egg
26
+ MANIFEST
27
 
28
+ # PyInstaller
29
+ *.manifest
30
+ *.spec
31
 
32
+ # Unit test / coverage reports
33
+ htmlcov/
34
+ .tox/
35
+ .coverage
36
+ .coverage.*
37
+ .cache
38
+ nosetests.xml
39
+ coverage.xml
40
+ *.cover
41
+ .hypothesis/
42
+ .pytest_cache/
43
 
44
+ # Environments
45
+ .env
46
+ .venv
47
+ env/
48
+ venv/
49
+ ENV/
50
+ env.bak/
51
+ venv.bak/
52
+
53
+ # IDE files
54
+ .idea/
55
+ .vscode/
56
+ *.swp
57
+ *.swo
58
 
59
+ # OS generated files
60
  .DS_Store
61
+ .DS_Store?
62
+ ._*
63
+ .Spotlight-V100
64
+ .Trashes
65
+ ehthumbs.db
66
  Thumbs.db
67
 
68
+ # Logs
69
+ *.log
70
+ logs/
71
 
72
+ # Video Background Replacement specific files
73
+ # Model cache and downloads
74
+ /tmp/model_cache/
75
+ model_cache/
76
+ *.pt
77
+ *.pth
78
+ *.ckpt
79
+ *.safetensors
80
 
81
+ # Large video files (use git-lfs if needed)
82
+ *.mp4
83
+ *.avi
84
+ *.mov
85
+ *.mkv
86
+ *.webm
87
+ *.flv
88
+
89
+ # Large image files
90
+ *.jpg
91
+ *.jpeg
92
+ *.png
93
+ *.gif
94
+ *.bmp
95
+ *.tiff
96
+
97
+ # Processing temporary files
98
+ /tmp/
99
+ temp/
100
+ processing_*
101
+ output_*
102
+ greenscreen_*
103
+ final_*
104
+
105
+ # Hugging Face cache
106
+ .cache/
107
+ huggingface/
108
 
109
+ # Application specific
110
+ gradio_cached_examples/
111
+ flagged/
112
+ app.log
113
+ processing.log
114
+ error.log
115
 
116
+ # Configuration with secrets
117
+ config_local.py
118
+ .secrets
119
+ .env.local