mirror of
https://github.com/willmiao/ComfyUI-Lora-Manager.git
synced 2026-09-27 14:04:08 -03:00
After migrating to centralized sidecar storage users had no indication where their files went, and portable-mode installs silently placed the sidecar root inside the plugin folder where a reinstall or git clean would delete it. - Migration now also covers models excluded from the library view and returns the resolved sidecar root in its result payload - get_settings exposes the resolved sidecar root, whether it is the default, and whether it lives inside the installation folder - New POST /api/lm/sidecars/open-location endpoint opens (or copies) the sidecar storage folder - Settings UI always shows the effective storage path with an open-folder button, and warns when the root is inside the installation folder (portable-mode hazard) - Migration confirmation shows the destination; on completion a result dialog summarizes moved/skipped/conflict counts with the storage location and an open-folder action - Ignore /sidecars/ at the repository root so portable-mode sidecars are never committed Refs #1045
48 lines
832 B
Plaintext
48 lines
832 B
Plaintext
__pycache__/
|
|
.pytest_cache/
|
|
settings.json
|
|
path_mappings.yaml
|
|
output/*
|
|
py/run_test.py
|
|
.vscode/
|
|
cache/
|
|
civitai/
|
|
stats/
|
|
wildcards/
|
|
backups/
|
|
# Portable-mode centralized sidecar storage (<repo>/sidecars): user data that
|
|
# must survive pulls and stay out of git status
|
|
/sidecars/
|
|
logs/
|
|
node_modules/
|
|
coverage/
|
|
.coverage
|
|
model_cache/
|
|
recipe_cache/
|
|
|
|
# agent / dev tooling
|
|
.opencode/
|
|
.claude/
|
|
.sisyphus/
|
|
.codex
|
|
.omo
|
|
reasonix.toml
|
|
.reasonix/
|
|
.codegraph/
|
|
.playwright-mcp/
|
|
|
|
# Vue widgets development cache (but keep build output)
|
|
vue-widgets/node_modules/
|
|
vue-widgets/.vite/
|
|
vue-widgets/dist/
|
|
|
|
# Hypothesis test cache
|
|
.hypothesis/
|
|
|
|
# Working/research notes (not committed)
|
|
.docs/
|
|
|
|
# HF enrichment validation baseline snapshots (contain potentially
|
|
# NSFW README content fetched from community model repos)
|
|
tests/enrich_hf_validation/baselines/
|