Skip to content
This repository was archived by the owner on Nov 21, 2025. It is now read-only.
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
68 changes: 68 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
# Git
.git
.gitignore

# Python cache
__pycache__/
*.py[cod]
*$py.class
*.so
.Python

# Virtual environments
venv/
env/
ENV/

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

# Models (downloaded at runtime)
models/
*.pth
*.ckpt
*.safetensors

# Data
data/*.wav
output/
*.wav
*.mp3
*.flac

# Documentation
*.md
!README.md
!DOCKER_DEPLOYMENT.md

# Test files
test_*.py
examples/

# Logs
*.log
logs/

# OS
.DS_Store
Thumbs.db

# Docker
Dockerfile
docker-compose.yml
.dockerignore

# Kubernetes
k8s/

# CI/CD
.github/
.gitlab-ci.yml

# Temporary files
tmp/
temp/
*.tmp
514 changes: 514 additions & 0 deletions ARCHITECTURE_COMPARISON.md

Large diffs are not rendered by default.

Loading