-
Notifications
You must be signed in to change notification settings - Fork 0
Quick Start
savvy773 edited this page May 26, 2026
·
2 revisions
Get the dashboard running in under 2 minutes.
| OS | Windows (PowerShell 7+) |
| Runtime | Node.js 20+ |
| Package manager |
pnpm — npm install -g pnpm
|
| CLIs | At least one of: Claude CLI · Codex CLI · Gemini CLI |
irm https://raw.githubusercontent.com/savvy773/ai_usage/main/scripts/install.ps1 | iexClones the repo, installs dependencies, and optionally opens the dashboard.
git clone https://github.com/savvy773/ai_usage.git
cd ai_usage
pnpm install
.\scripts\start-server.ps1 -OpenDashboard runs at http://127.0.0.1:5173
.\scripts\start-server.ps1 # start (default port 5173)
.\scripts\start-server.ps1 -Open # start + open browser
.\scripts\start-server.ps1 -Port 5174 # custom port
.\scripts\start-server.ps1 -Mode preview # production preview build
.\scripts\start-server.ps1 -Status # check if server is running
.\scripts\start-server.ps1 -Help # show all optionsUses
--strictPort. Only restarts a server it previously started — will not kill unrelated processes on the same port.
pnpm dev # hot-reload dev server
pnpm check # TypeScript + Svelte type check
pnpm build # production build
pnpm lint # ESLint + Prettier checkEnable verbose collector output
$env:AI_USAGE_DEBUG_LOGS=1; .\scripts\start-server.ps1- Open http://127.0.0.1:5173
- Click Refresh — or wait for the auto-refresh
- Each provider runs its CLI, collects data, and updates the dashboard
If a provider shows
partialon the first run, click Refresh again — CLI startup timing can cause one failed attempt.
See also: Architecture · Fix Checklist