Files
Netherwarlord ee7b266d45
tests / python (3.10) (push) Successful in 12m30s
tests / python (3.11) (push) Successful in 12m33s
tests / web (push) Successful in 13m3s
feat: add packaging scripts, build process, and GPU acceleration documentation
2026-07-28 23:10:29 -04:00

39 lines
753 B
Plaintext

# Ignore Python cache and compiled files
__pycache__/
*.pyc
*.pyo
*.pyd
# Ignore results folder and its contents
results/
# Ignore virtual environments
.venv/
venv/
ENV/
# Ignore system files
.DS_Store
# Ignore other build artifacts
*.egg-info/
# Release archives from packaging/build.py. Root-anchored so it cannot swallow
# .core/suites or any future nested "dist" that is real source.
/dist/
# Frontend
web/node_modules/
web/dist/
node_modules/
# Root-anchored: npm run from the repo root leaves an empty lockfile here.
# web/package-lock.json is real and must stay tracked, so this cannot be a
# bare "package-lock.json" pattern.
/package-lock.json
# Local model weights
models/
# Locally persisted GUI/CLI settings
.core/user_settings.json