46 lines
402 B
Plaintext
46 lines
402 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
|
|
# Virtual environments
|
|
venv/
|
|
env/
|
|
ENV/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Data (will be mounted as volume)
|
|
data/videos/*
|
|
data/results/*
|
|
data/jobs/*
|
|
|
|
# Git
|
|
.git/
|
|
.gitignore
|
|
|
|
# Docker
|
|
.dockerignore
|
|
Dockerfile
|
|
docker-compose.yml
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Jupyter
|
|
.ipynb_checkpoints/
|
|
|
|
# Tests
|
|
.pytest_cache/
|
|
.coverage
|