fix: Improve .gitignore and re-add config file
- Improves organization and removes extra junk files. - Unignores *.yaml files such as config.yaml from the /checkpoints/ directory since we need that file.
This commit is contained in:
parent
9d4776b082
commit
5ffb84b427
35
.gitignore
vendored
35
.gitignore
vendored
@ -1,12 +1,31 @@
|
|||||||
venv/
|
# Development Tools.
|
||||||
__pycache__
|
.mypy_cache/
|
||||||
*.egg-info
|
.ruff_cache/
|
||||||
*.DS_Store
|
__pycache__/
|
||||||
.idea/
|
.idea/
|
||||||
.vscode/
|
.vscode/
|
||||||
checkpoints/*
|
|
||||||
outputs/
|
# Environments.
|
||||||
build/
|
.venv*/
|
||||||
|
venv*/
|
||||||
|
conda_env*/
|
||||||
|
|
||||||
|
# Python Bytecode.
|
||||||
*.py[cod]
|
*.py[cod]
|
||||||
|
|
||||||
|
# Distribution/Packaging.
|
||||||
|
/build/
|
||||||
|
/dist/
|
||||||
*.egg-info/
|
*.egg-info/
|
||||||
.venv
|
.pypirc
|
||||||
|
|
||||||
|
# Operating System Junk.
|
||||||
|
*.DS_Store
|
||||||
|
Thumbs.db
|
||||||
|
desktop.ini
|
||||||
|
|
||||||
|
# IndexTTS.
|
||||||
|
/cache/
|
||||||
|
/checkpoints/*
|
||||||
|
!/checkpoints/*.yaml
|
||||||
|
/outputs/
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user