mirror of
https://github.com/samvallad33/vestige.git
synced 2026-07-26 23:51:02 +02:00
- cloud-sync client now REQUIRES VESTIGE_CLOUD_ENCRYPTION_KEY: construction fails without it, every upload is encrypted, downloads reject plaintext - release.yml: Windows + Intel Mac binaries now build with cloud-sync - ci.yml: the paid path is now compiled and tested in CI - Second-Machine Wall: unentitled 'vestige sync --cloud' now explains Pro ($19/mo) with a subscribe link instead of a dead-end error - vestige --help / health footers, npm postinstall note, npm README Pro section - .gitignore: exclude private business docs (contact lists) from the repo Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
158 lines
4.5 KiB
Text
158 lines
4.5 KiB
Text
# =============================================================================
|
|
# Rust
|
|
# =============================================================================
|
|
target/
|
|
**/*.rs.bk
|
|
*.pdb
|
|
|
|
# Cargo.lock is included for binaries, excluded for libraries
|
|
# Uncomment the next line if this is a library project
|
|
# Cargo.lock
|
|
|
|
# =============================================================================
|
|
# Tauri
|
|
# =============================================================================
|
|
src-tauri/target/
|
|
|
|
# =============================================================================
|
|
# Node.js
|
|
# =============================================================================
|
|
node_modules/
|
|
dist/
|
|
.pnpm-store/
|
|
.npm
|
|
.yarn/cache
|
|
.yarn/unplugged
|
|
.yarn/install-state.gz
|
|
|
|
# =============================================================================
|
|
# Build Artifacts
|
|
# =============================================================================
|
|
*.dmg
|
|
*.app
|
|
*.exe
|
|
*.msi
|
|
*.deb
|
|
*.AppImage
|
|
*.snap
|
|
|
|
# =============================================================================
|
|
# Logs
|
|
# =============================================================================
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
# =============================================================================
|
|
# Environment Variables
|
|
# =============================================================================
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
.env.development
|
|
.env.production
|
|
|
|
# =============================================================================
|
|
# Testing
|
|
# =============================================================================
|
|
coverage/
|
|
.nyc_output/
|
|
*.lcov
|
|
__pycache__/
|
|
*.py[cod]
|
|
apps/dashboard/test-results/
|
|
apps/dashboard/playwright-report/
|
|
apps/dashboard/e2e/screenshots/
|
|
|
|
# =============================================================================
|
|
# IDEs and Editors
|
|
# =============================================================================
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*.sublime-workspace
|
|
*.sublime-project
|
|
.project
|
|
.classpath
|
|
.settings/
|
|
|
|
# =============================================================================
|
|
# macOS
|
|
# =============================================================================
|
|
.DS_Store
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
.AppleDouble
|
|
.LSOverride
|
|
.fseventsd
|
|
|
|
# =============================================================================
|
|
# Windows
|
|
# =============================================================================
|
|
Thumbs.db
|
|
ehthumbs.db
|
|
Desktop.ini
|
|
|
|
# =============================================================================
|
|
# Linux
|
|
# =============================================================================
|
|
*~
|
|
|
|
# =============================================================================
|
|
# Security / Secrets
|
|
# =============================================================================
|
|
*.pem
|
|
*.key
|
|
*.p12
|
|
*.pfx
|
|
*.crt
|
|
*.cer
|
|
secrets.json
|
|
credentials.json
|
|
|
|
# =============================================================================
|
|
# Miscellaneous
|
|
# =============================================================================
|
|
.cache/
|
|
.parcel-cache/
|
|
.turbo/
|
|
*.local
|
|
|
|
# =============================================================================
|
|
# ML Model Cache (fastembed ONNX models - ~1.75 GB)
|
|
# =============================================================================
|
|
**/.fastembed_cache/
|
|
.fastembed_cache/
|
|
|
|
# =============================================================================
|
|
# SvelteKit (intermediate build artifacts — build/ is kept for include_dir!)
|
|
# =============================================================================
|
|
apps/dashboard/.svelte-kit/
|
|
apps/dashboard/node_modules/
|
|
|
|
# =============================================================================
|
|
# External repos (forks, submodules)
|
|
# =============================================================================
|
|
fastembed-rs/
|
|
.mcp.json
|
|
|
|
.claude/
|
|
.codebase-memory/
|
|
|
|
# Internal AI-council planning scratch + session dumps — never public
|
|
.council/
|
|
|
|
# Private business material: pricing strategy, sales playbooks, and outreach
|
|
# lists containing third parties' names and contact details. These sit in the
|
|
# working tree untracked; without this rule a single `git add -A` would publish
|
|
# real people's personal data to a public repo.
|
|
docs/business/
|
|
*.session.jsonl
|
|
blackbox-proof-*/*.jsonl
|
|
|
|
# Hermes agent-runtime conversation dumps (dated hex, tens of MB, embed system prompts)
|
|
[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]_[0-9][0-9][0-9][0-9][0-9][0-9]_[0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f]
|