mirror of
https://github.com/Psychotoxical/psysonic.git
synced 2026-07-22 15:25:46 +00:00
7a6215d03d
Pinning bundle.windows.signCommand in the base tauri.conf.json broke
from-source builds: Tauri tries to invoke a signtool path that only
exists on the maintainer's machine, with a cert thumbprint they don't
have. The build-windows-check CI job already worked around this by
passing --config '{"bundle":{"windows":{"signCommand":null}}}'. If CI
needs that override, every external builder needs it too.
Invert: base config has no signCommand. Local signed builds opt in by
copying tauri.windows.signing.example.json to tauri.windows.signing.json
(gitignored), filling in local values, and running tauri:build:signed-win
which deep-merges the override via --config.
- Remove signCommand from src-tauri/tauri.conf.json
- Add src-tauri/tauri.windows.signing.example.json (template, committed)
- Gitignore src-tauri/tauri.windows.signing.json
- Add npm script tauri:build:signed-win
- Drop the --config signCommand:null workaround from build-windows-check
- Rewrite README signing section to reflect the override flow
70 lines
1.1 KiB
Plaintext
70 lines
1.1 KiB
Plaintext
# Logs
|
|
logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
lerna-debug.log*
|
|
|
|
# Environment variables (API keys)
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Node
|
|
node_modules
|
|
dist
|
|
dist-ssr
|
|
*.local
|
|
|
|
# Editor directories and files
|
|
.vscode/*
|
|
!.vscode/extensions.json
|
|
.idea
|
|
.DS_Store
|
|
*.suo
|
|
*.ntvs*
|
|
*.njsproj
|
|
*.sln
|
|
*.sw?
|
|
|
|
# Tauri
|
|
src-tauri/target/
|
|
src-tauri/gen/
|
|
src-tauri/lcov.info
|
|
|
|
# Local Windows signing override (copy from tauri.windows.signing.example.json)
|
|
src-tauri/tauri.windows.signing.json
|
|
|
|
# Frontend test coverage
|
|
coverage/
|
|
|
|
# Documentation
|
|
CLAUDE.md
|
|
|
|
# Local commit-instructions for agents (never commit)
|
|
to_commit.md
|
|
|
|
# Claude Code memory (local only)
|
|
memory/
|
|
|
|
# Local scratchpad / notes (not committed)
|
|
tmp/
|
|
|
|
# Third-party clones for local research (not committed)
|
|
research/
|
|
|
|
# Nix build output symlink
|
|
result
|
|
result-*
|
|
|
|
# Local incremental cargo (nix develop; not used by flake — see nix/psysonic.nix cleanSource)
|
|
.build-local/
|
|
|
|
# Local Nix helpers (not in repo — optional; use `nix develop` / flake without them)
|
|
dev.sh
|
|
shell.nix
|
|
prod.sh
|
|
tsconfig.tsbuildinfo
|