.dockerignore 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. # .dockerignore
  2. # Git and version control
  3. .git
  4. .gitignore
  5. .gitattributes
  6. .gitmodules
  7. # Documentation
  8. *.md
  9. docs/
  10. !README*
  11. LICENSE*
  12. CHANGELOG*
  13. # IDE and editor files
  14. .vscode/
  15. .idea/
  16. *.swp
  17. *.swo
  18. *~
  19. .DS_Store
  20. Thumbs.db
  21. # Python cache and build artifacts
  22. __pycache__/
  23. *.py[cod]
  24. *$py.class
  25. *.so
  26. .Python
  27. build/
  28. develop-eggs/
  29. dist/
  30. downloads/
  31. eggs/
  32. .eggs/
  33. lib/
  34. lib64/
  35. parts/
  36. sdist/
  37. var/
  38. wheels/
  39. *.egg-info/
  40. .installed.cfg
  41. *.egg
  42. MANIFEST
  43. # Virtual environments
  44. venv/
  45. env/
  46. ENV/
  47. .venv/
  48. .env/
  49. # Testing
  50. .pytest_cache/
  51. .coverage
  52. htmlcov/
  53. .tox/
  54. .nox/
  55. coverage.xml
  56. *.cover
  57. .hypothesis/
  58. # Jupyter Notebook
  59. .ipynb_checkpoints
  60. *.ipynb
  61. # Logs
  62. *.log
  63. logs/
  64. # Temporary files
  65. tmp/
  66. temp/
  67. *.tmp
  68. *.temp
  69. # OS generated files
  70. .DS_Store
  71. .DS_Store?
  72. ._*
  73. .Spotlight-V100
  74. .Trashes
  75. ehthumbs.db
  76. Thumbs.db
  77. # Docker files (except the one being used)
  78. docker/
  79. Dockerfile*
  80. docker-compose*.yml
  81. .dockerignore
  82. # Checkpoints and models (should be mounted)
  83. checkpoints/
  84. models/
  85. *.pth
  86. *.ckpt
  87. *.safetensors
  88. *.bin
  89. # Reference voices (should be mounted)
  90. references/
  91. # Generated audio files
  92. *.wav
  93. *.mp3
  94. *.flac
  95. *.ogg
  96. generated_audio.wav
  97. fake.wav
  98. fake.npy
  99. # Cache directories
  100. .cache/
  101. cache/
  102. .uv_cache/
  103. # Development files
  104. .env
  105. .env.local
  106. .env.development
  107. .env.test
  108. .env.production
  109. # Test files
  110. test_*.py
  111. *_test.py
  112. tests/
  113. # CI/CD
  114. .github/
  115. .gitlab-ci.yml
  116. .travis.yml
  117. .circleci/
  118. azure-pipelines.yml
  119. # Monitoring and profiling
  120. .prof
  121. *.prof
  122. # Backup files
  123. *.bak
  124. *.backup
  125. *.old
  126. # Large data files
  127. *.csv
  128. *.json
  129. *.jsonl
  130. *.parquet
  131. *.h5
  132. *.hdf5
  133. # Audio processing temporary files
  134. *.tmp.wav
  135. *.temp.wav
  136. # OLD:
  137. # .github
  138. # results
  139. # data
  140. # *.filelist
  141. # /data_server/target
  142. # checkpoints
  143. # .venv