-
Notifications
You must be signed in to change notification settings - Fork 0
reference configuration
factory-droid[bot] edited this page Jul 5, 2026
·
1 revision
Configuration is split across package scripts, Cargo workspace settings, Tauri config, frontend config, app settings, and release metadata.
| File | Purpose |
|---|---|
package.json |
Root scripts, project version, package manager, release commands. |
Cargo.toml |
Workspace members, edition, shared dependency versions. |
frontend/package.json |
Frontend dependencies and scripts. |
frontend/vite.config.ts |
Vite and Vitest configuration. |
src-tauri/tauri.conf.json |
Tauri app configuration. |
src-tauri/tauri.linux.conf.json |
Linux-specific Tauri configuration. |
scripts/release-constants.json |
Release constants used by scripts. |
crates/qa-scribe-core/src/domain/settings.rs |
App settings domain model. |
App settings are stored through crates/qa-scribe-core/src/services/session_service/settings.rs and surfaced in frontend/src/views/SettingsView.tsx. Theme preference is stored in browser local storage as qa-scribe-theme from frontend/src/hooks/useSettingsController.ts.
See Settings and provider setup for the user-facing flow.
- QA Scribe
- Download overview video (MP4)
- Architecture
- Getting started
- Glossary
- By the numbers
- Lore
- Fun facts
- Video overview
- How to contribute
- Development workflow
- Testing
- Debugging
- Patterns and conventions
- Tooling
- Applications
- Desktop app
- Smoke harness
- Systems
- Rust core
- Tauri command bridge
- Frontend shell
- Generation jobs
- Provider detection
- Release tooling
- Features
- Session capture
- Rich record editing
- Managed attachments
- AI-assisted Testware
- Settings and provider setup
- Crates
- qa-scribe-core
- qa-scribe-app
- Primitives
- Session
- Entry
- Finding
- Draft
- Evidence
- API
- Tauri commands
- Deployment
- Security
- Background
- Architecture decisions
- Migration context
- Cleanup opportunities
- TODOs and FIXMEs
- Complexity hotspots
- Reference
- Configuration
- Data models
- Dependencies