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:
Arcitec 2025-09-08 12:56:10 +02:00
parent 9d4776b082
commit 5ffb84b427

35
.gitignore vendored
View File

@ -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/