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
49 changes: 48 additions & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,56 @@
# Git
.git/
.gitignore
.gitattributes

# Docker
Dockerfile
docker-compose.yml
.dockerignore

# Build
build/
dist/
TTS.egg-info/
*.egg-info/

# Tests
tests/outputs/*
tests/train_outputs/*

# Python
__pycache__/
*.pyc
*.pyc
*.py[cod]
*$py.class
*.so
.Python
.pytest_cache/
.coverage
htmlcov/

# IDEs
.vscode/
.idea/
*.swp
*.swo
*~

# OS
.DS_Store
Thumbs.db

# Modelos y datos pesados
models/
output/
data/
*.pth
*.pt
*.ckpt

# Notebooks
*.ipynb
.ipynb_checkpoints

# CI/CD
.github/
Loading
Loading