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
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,11 @@ brew upgrade --cask fanguard
# Install dependencies
pnpm install

# Run full app (frontend + Rust backend)
pnpm tauri dev
# Run full app (builds helper binary + starts frontend + Rust backend)
pnpm dev:app

# Run with fan control (requires root)
sudo pnpm tauri dev
# Equivalent lower-level Tauri command
pnpm tauri dev

# Frontend unit tests
pnpm test
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"type": "module",
"scripts": {
"dev": "vite",
"dev:app": "tauri dev",
"dev:prepare-helper": "\"$HOME/.cargo/bin/cargo\" build --manifest-path src-tauri/Cargo.toml --features helper-binary --bin fanguard-helper",
"build": "vite build",
"build:app-store": "VITE_FANGUARD_DISTRIBUTION=app-store vite build",
Expand Down
Loading