Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
87 changes: 87 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg

# Virtual environments
venv/
env/
ENV/

# IDE
.vscode/
.idea/
*.swp
*.swo

# OS
.DS_Store
Thumbs.db

# Git
.git/
.gitignore

# Documentation
docs/_site/
*.md

# Logs
logs/
*.log

# Test files
tests/
test_*/
pytest.ini

# Development files
.pytest_cache/
.coverage
htmlcov/

# Docker
Dockerfile*
docker-compose*
.dockerignore

# AWS
.aws/

# Audio recordings (if large)
audio_recordings/
test_recordings/
test_audio_recordings/

# Jupyter notebooks
*.ipynb

# Temporary files
*.tmp
*.temp

# Backup files
*.bak
*.backup





Loading