Update .gitignore to include additional patterns for Python, environment, IDE, and project-specific files

This commit is contained in:
remsky 2025-01-12 14:45:26 -07:00
parent 22c52fdd7e
commit 5e9a0ae2b1
2 changed files with 38 additions and 22 deletions

View file

@ -1,6 +1,5 @@
# Version control # Version control
.git .git
.gitignore
# Python # Python
__pycache__ __pycache__

59
.gitignore vendored
View file

@ -1,28 +1,45 @@
# Version control
.git
output/* # Python
output_audio/* __pycache__
ui/data/*
*.db
*.pyc *.pyc
*.pth *.pyo
*.pyd
Kokoro-82M/*
__pycache__/
.vscode/
env/
.Python .Python
*.py[cod]
*$py.class
.pytest_cache
.coverage .coverage
.coveragerc
examples/assorted_checks/benchmarks/output_audio/* # Environment
examples/assorted_checks/test_combinations/output/* # .env
examples/assorted_checks/test_openai/output/* .venv
env/
venv/
ENV/
examples/assorted_checks/test_voices/output/* # IDE
examples/assorted_checks/test_formats/output/* .idea
examples/assorted_checks/benchmarks/output_audio_stream/* .vscode
ui/RepoScreenshot.png *.swp
examples/assorted_checks/benchmarks/output_audio_stream_openai/* *.swo
# Project specific
examples/
Kokoro-82M/
ui/
tests/
*.md
*.txt
!requirements.txt
# Docker
Dockerfile*
docker-compose*
*.egg-info
*.pt
*.wav
*.tar*