Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ jobs:
MACOS_APPLE_ID: ${{ secrets.MACOS_APPLE_ID }}
# App-specific password generated at appleid.apple.com for notarization.
MACOS_APPLE_PASSWORD: ${{ secrets.MACOS_APPLE_PASSWORD }}
# Sentry project DSN used for production telemetry.
SENTRY_DSN: ${{ secrets.SENTRY_DSN }}

steps:
- uses: actions/checkout@v6
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ out/
# Generated code.
gen/

# Local environment.
.env

# macOS metadata.
.DS_Store

Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ npm run build
Builds a macOS app and `.dmg`. Signing and notarization need Apple credentials from the environment; without them the
build still produces an unsigned `.dmg`.

Production Sentry telemetry is included only when `SENTRY_DSN` is set during the build.
Release builds read it from the `SENTRY_DSN` GitHub Actions secret.

## Project layout

- **`src/main/`** — app lifecycle, window, tray, metrics, and process services; owns privileged work and the typed IPC.
Expand Down
Loading
Loading