From 5ffb84b427d2d7e8fa597cc4f5e31c2b30cfd492 Mon Sep 17 00:00:00 2001 From: Arcitec <38923130+Arcitec@users.noreply.github.com> Date: Mon, 8 Sep 2025 12:56:10 +0200 Subject: [PATCH] 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. --- .gitignore | 35 +++++++++++++++++++++++++++-------- 1 file changed, 27 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index 0db34f7..1dd404e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,12 +1,31 @@ -venv/ -__pycache__ -*.egg-info -*.DS_Store +# Development Tools. +.mypy_cache/ +.ruff_cache/ +__pycache__/ .idea/ .vscode/ -checkpoints/* -outputs/ -build/ + +# Environments. +.venv*/ +venv*/ +conda_env*/ + +# Python Bytecode. *.py[cod] + +# Distribution/Packaging. +/build/ +/dist/ *.egg-info/ -.venv +.pypirc + +# Operating System Junk. +*.DS_Store +Thumbs.db +desktop.ini + +# IndexTTS. +/cache/ +/checkpoints/* +!/checkpoints/*.yaml +/outputs/