The TAURI_CONFIG env var approach for resources wasn't being applied by the NSIS bundler, so sidecar.zip was never included in the installer. - Add resources: ["sidecar.zip"] directly to tauri.conf.json - build.rs creates a minimal placeholder zip for dev builds so compilation succeeds even without the real sidecar - Remove TAURI_CONFIG env var from all CI workflows (no longer needed) - Add sidecar.zip to .gitignore (generated by CI, not tracked) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
56 lines
516 B
Plaintext
56 lines
516 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
venv/
|
|
.venv/
|
|
__pycache__/
|
|
*.pyc
|
|
|
|
# Build output
|
|
dist/
|
|
build/
|
|
out/
|
|
*.egg-info/
|
|
.svelte-kit/
|
|
target/
|
|
|
|
# Rust
|
|
src-tauri/target/
|
|
|
|
# Python cache
|
|
.pytest_cache/
|
|
.ruff_cache/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Audio/video test files
|
|
*.wav
|
|
*.mp3
|
|
*.mp4
|
|
*.mkv
|
|
*.avi
|
|
*.ogg
|
|
*.flac
|
|
!test/fixtures/*
|
|
|
|
# Sidecar build artifacts
|
|
src-tauri/binaries/*
|
|
!src-tauri/binaries/.gitkeep
|
|
src-tauri/sidecar.zip
|
|
python/dist/
|
|
python/build/
|