Skip to content
Open
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
44 changes: 44 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: CI

on:
pull_request:
push:
branches:
- main
- 'fix/**'
- 'feat/**'
workflow_dispatch:

jobs:
test:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.23'
cache: true

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
cache-dependency-path: frontend/package-lock.json

- name: Install macOS dependencies
run: brew install portaudio

- name: Install frontend dependencies
run: npm ci
working-directory: frontend

- name: Build frontend
run: npm run build
working-directory: frontend

- name: Test Go packages
run: go test ./...
324 changes: 175 additions & 149 deletions .github/workflows/release.yml

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,14 @@ The app requires the following permissions:
- **Microphone** — For audio recording
- **Accessibility** — For global hotkey and auto-paste functionality

### Debug Logs

Yap writes debug logs to help investigate unexpected user behavior. Logs are kept for 7 days.

- macOS: `~/Library/Application Support/yap/logs/yap-YYYY-MM-DD.log`
- Windows: `%APPDATA%\yap\logs\yap-YYYY-MM-DD.log`
- Linux: `~/.config/yap/logs/yap-YYYY-MM-DD.log`

## Documentation

For comprehensive documentation, visit **[applauselab.ai/docs/yap](https://applauselab.ai/docs/yap/)**.
Expand Down
Loading
Loading