.dockerignore 1.6 KB

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