Initial commit

This commit is contained in:
2025-11-04 00:23:51 +00:00
commit a397a14cab
15 changed files with 9102 additions and 0 deletions
+82
View File
@@ -0,0 +1,82 @@
# --- Python --------------------------------------------------------------
venv/
.env/
.venv/
env/
__pycache__/
*.py[cod]
*.pyo
*.pyd
*.so
*.dll
*.dylib
# Build / distribution
build/
dist/
*.egg-info/
.eggs/
*.egg
*.whl
*.zip
*.tar.gz
*.tgz
*.rar
*.tar.bz2
*.gz
# Virtual environment activation scripts
activate*
activate.csh
activate.fish
activate.ps1
activate
pyvenv.cfg
# Coverage / testing
htmlcov/
coverage.xml
.tox/
.env
.env.*
# --- Node / JavaScript -----------------------------------------------
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
package-lock.json
yarn.lock
# Transpiled output (if any)
dist/
build/
lib/
src/
# --- OS / IDE ---------------------------------------------------------
.DS_Store
Thumbs.db
.idea/
.vscode/
*.swp
*.swo
*.bak
*.tmp
*.temp
*.orig
*.sublime-workspace
*.sublime-project
# --- Binaries / compiled packages --------------------------------------
lib/python3.13/site-packages/
lib64/
bin/
# --- Runtime data / large blobs ---------------------------------------
chroma_db/
chroma.sqlite3
# --- Misc ----------------------------------------------------------------
# (Leave this at the end to catch anything not matched above)
# (but **do NOT** put a blanket "*" here!)