diff --git a/.gitignore b/.gitignore index 258ac43..762040a 100644 --- a/.gitignore +++ b/.gitignore @@ -19,17 +19,15 @@ wheels/ *.egg-info/ .installed.cfg *.egg -MANIFEST # Virtual environments -.env -.venv -env/ venv/ ENV/ -env.bak/ -venv.bak/ -.poetry/ +env/ +.venv + +# Poetry +poetry.lock # IDE .vscode/ @@ -37,58 +35,43 @@ venv.bak/ *.swp *.swo *~ -.DS_Store -# Testing -.tox/ -.coverage -.coverage.* -.cache -nosetests.xml -coverage.xml -*.cover -.hypothesis/ -.pytest_cache/ -htmlcov/ +# Environment +.env +.env.local +.env.*.local # Logs *.log logs/ -*.log.* # Database *.db *.sqlite -*.sqlite3 - -# Environment variables -.env.local -.env.*.local # Output output/ -data/ -*.tar.gz -*.zip +data/chroma_db/ -# Node -node_modules/ -npm-debug.log* -yarn-debug.log* -yarn-error.log* -.pnp/ -.pnp.js -dist/ -build/ +# Coverage +htmlcov/ +.coverage +.coverage.* +coverage.xml +*.cover + +# Testing +.pytest_cache/ +.tox/ # Docker .dockerignore -# Temporary files -*.tmp -*.temp -.cache/ - # OS +.DS_Store Thumbs.db -Desktop.ini + +# Temporary +tmp/ +temp/ +*.tmp