147 lines
2.3 KiB
Plaintext
147 lines
2.3 KiB
Plaintext
# Dependencies
|
|
node_modules/
|
|
|
|
# Build output
|
|
ui/dist/
|
|
server/dist/
|
|
build/
|
|
|
|
# Data (local, not committed)
|
|
server/data/
|
|
server/server/data/
|
|
# Root runtime data (SQLite DB, generated audio/latents) and model weights —
|
|
# anchored to root: server/src/data/ and ui/src/data/ are tracked source
|
|
/data/
|
|
/models/
|
|
# Local machine config
|
|
/.mcp.json
|
|
/SafeSettings.json
|
|
*.db
|
|
*.db-shm
|
|
*.db-wal
|
|
*.db-journal
|
|
|
|
# Session logs (generated per-run)
|
|
logs/
|
|
|
|
# Environment (contains local paths)
|
|
.env
|
|
|
|
# Restart marker (transient, created by /api/restart)
|
|
.restart-requested
|
|
|
|
# Engine build artifacts
|
|
engine/acestep.cpp/
|
|
engine/build/
|
|
engine/deps/
|
|
engine/.cache/
|
|
|
|
# Binaries & compiled objects
|
|
*.exe
|
|
!Essentia/*.exe
|
|
*.dll
|
|
*.lib
|
|
*.obj
|
|
*.o
|
|
*.a
|
|
*.so
|
|
*.dylib
|
|
*.pdb
|
|
*.ilk
|
|
*.exp
|
|
|
|
# Audio files
|
|
*.wav
|
|
!noise_samples/*.wav
|
|
*.mp3
|
|
*.flac
|
|
*.ogg
|
|
*.aac
|
|
*.wma
|
|
*.m4a
|
|
*.bf16
|
|
|
|
# Model weights
|
|
*.gguf
|
|
*.safetensors
|
|
*.pt
|
|
*.pth
|
|
*.onnx
|
|
# ONNX external data files (dit-stream has ~500 weight files with no extension)
|
|
models/onnx/dit-stream/
|
|
|
|
# Downloaded tools (whisper.cpp, etc.)
|
|
tools/*
|
|
!tools/onnx-export/
|
|
!tools/mcp-lyricstudio/
|
|
tools/mcp-lyricstudio/node_modules/
|
|
|
|
# Test output logs
|
|
engine/tests/*.log
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
|
|
# OS
|
|
Thumbs.db
|
|
.DS_Store
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
|
|
# Agents & dev tooling (local only)
|
|
.agents/
|
|
.agent/
|
|
# .claude/ is local-only EXCEPT the committed skill library
|
|
.claude/*
|
|
!.claude/skills/
|
|
.gemini/
|
|
|
|
# Dev-only scripts (local only, not needed by end users)
|
|
dev.bat
|
|
dev-rebuild.bat
|
|
server/restart-loop.cmd
|
|
|
|
# Local-only content
|
|
benchmark-results/
|
|
docs/plans/
|
|
scratch/
|
|
# Co-dev drop folder (VST plugins etc. — install locally, never commit)
|
|
toinstall/
|
|
# Co-dev outbound folder (modified plugin copies to send back)
|
|
tosend/
|
|
|
|
# Release build artifacts (but keep scripts and configs)
|
|
release/staging/
|
|
release/out/
|
|
release/.node-cache/
|
|
release/node_modules/
|
|
release/package-lock.json
|
|
release-staging/
|
|
runtime/
|
|
*.tar.gz
|
|
|
|
# Windows NUL device phantom
|
|
nul
|
|
|
|
# i18n dev-only utility scripts
|
|
ui/add_strings.mjs
|
|
ui/temp_strings.json
|
|
|
|
# TensorRT-LLM (local dev only)
|
|
engine/trtllm-libs/
|
|
engine/trtllm-include/
|
|
|
|
# TRT experiment files (local dev only)
|
|
test_trtllm_*.cpp
|
|
test_trtllm_*.h
|
|
create_test_onnx.py
|
|
test_smoke.*
|
|
rebuild_engine.*
|
|
Important.md
|
|
|
|
# Docker (container-specific overrides, not committed)
|
|
docker-compose.override.yml |