Intial commit
This commit is contained in:
65
.gitignore
vendored
Normal file
65
.gitignore
vendored
Normal file
@@ -0,0 +1,65 @@
|
||||
# Python
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*$py.class
|
||||
*.so
|
||||
.Python
|
||||
.pytest_cache/
|
||||
.mypy_cache/
|
||||
.ruff_cache/
|
||||
|
||||
# Virtual environments
|
||||
.venv/
|
||||
venv/
|
||||
env/
|
||||
ENV/
|
||||
|
||||
# IDE / editor
|
||||
.vscode/
|
||||
.idea/
|
||||
*.swp
|
||||
*.swo
|
||||
|
||||
# OS files
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
# Build / packaging
|
||||
build/
|
||||
dist/
|
||||
*.egg-info/
|
||||
|
||||
# Logs
|
||||
*.log
|
||||
|
||||
# Project runtime temp/output
|
||||
*_tmp/
|
||||
frames_in/
|
||||
frames_out/
|
||||
/tmp/
|
||||
|
||||
# Video and media artifacts
|
||||
*.mp4
|
||||
*.mkv
|
||||
*.avi
|
||||
*.mov
|
||||
*.m4a
|
||||
*.wav
|
||||
*.png
|
||||
*.jpg
|
||||
*.jpeg
|
||||
|
||||
# Keep model and tool binaries out of git
|
||||
models/
|
||||
*.bin
|
||||
*.param
|
||||
*.pth
|
||||
|
||||
# Local env/config
|
||||
.env
|
||||
.env.*
|
||||
|
||||
# Downloaded archives
|
||||
*.zip
|
||||
*.tar
|
||||
*.tar.gz
|
||||
Reference in New Issue
Block a user