Files
BizGaze_Remote/.gitignore
T
Sravan 1500d42cd2 feat(desktop): packaging + self-hosted auto-update (electron-builder/updater)
- package.json build config: NSIS installer, app icon, generic publish provider →
  https://remote.bizgaze.com/downloads/ (self-hosted update feed).
- main.js: electron-updater checks the feed on launch + every 6h, downloads in the
  background, installs on restart. Active only in packaged builds.
- build/icon.ico app icon; PACKAGING.md documents build/release/signing.
- Key design: web/UI changes reach installed apps instantly (they load the live server);
  only native shell changes need an auto-updated build.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-01 17:03:18 +05:30

52 lines
713 B
Plaintext

# Dependencies
node_modules/
# Logs
*.log
npm-debug.log*
# Database files
*.db
*.db-shm
*.db-wal
*.sqlite
# Certificates & keys
*.pem
*.key
*.crt
# Environment files
.env
.env.*
!.env.example
# Local deploy trigger password (never commit)
deploy.secret
# Build output
dist/
build/
out/
# Native client generated/build artifacts (Capacitor adds platform dirs; Electron builds to dist)
mobile/android/
mobile/ios/
# Keep the desktop app icon (a build RESOURCE), even though the global build/ rule ignores it
!desktop/build/
!desktop/build/**
# Runtime media (created at startup by config.js)
server/recordings/
server/transcripts/
server/uploads/
# OS files
.DS_Store
Thumbs.db
# Editor
.vscode/
.idea/