···11_default:
22 @just --list --unsorted --justfile {{justfile()}}
3344+55+# Perform setup for the frontend using `npm`
46[working-directory: 'frontend']
55-# Perform setup for the frontend using `npm`
67setup-frontend:
78 npm install --no-fund --no-audit
89···1011dev:
1112 cargo tauri dev
12131414+# Format everything
1515+fmt:
1616+ cd backend && cargo fmt
1717+ cd frontend && npm run format
1818+1319# Connect and run on an Android VM/Physical device
1420dev-android:
1521 cargo tauri android dev
16221717-[working-directory: 'backend']
1823# Run a check on the backend
2424+[working-directory: 'backend']
1925check-backend:
2026 cargo check
2127 cargo clippy --fix --allow-dirty --allow-staged -- -D warnings
22282929+3030+# Run lint on the frontend
2331[working-directory: 'frontend']
2424-# Run lint on the frontend
2532check-frontend:
2633 npm run lint
2734