mirror of
https://github.com/remsky/Kokoro-FastAPI.git
synced 2025-04-13 09:39:17 +00:00
Update .gitignore to include additional patterns for Python, environment, IDE, and project-specific files
This commit is contained in:
parent
22c52fdd7e
commit
5e9a0ae2b1
2 changed files with 38 additions and 22 deletions
|
@ -1,6 +1,5 @@
|
||||||
# Version control
|
# Version control
|
||||||
.git
|
.git
|
||||||
.gitignore
|
|
||||||
|
|
||||||
# Python
|
# Python
|
||||||
__pycache__
|
__pycache__
|
||||||
|
|
59
.gitignore
vendored
59
.gitignore
vendored
|
@ -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*
|
Loading…
Add table
Reference in a new issue