# RISE Dashboard

Run this HTML file as a local website that keeps running after you close VS Code/terminal.

## Start server (background)

```bash
nohup python3 -m http.server 5500 -d /media/data/dilshod/workspaces/projects/rise-dashboard >/dev/null 2>&1 &
```

Open in browser:

- http://localhost:5500/RISE-Dashboard.html
- http://100.100.1.20:5500/RISE-Dashboard.html

## Stop server

```bash
pkill -f "http.server 5500"
```

## Short note: JSON columns (data/RISE-Data-CV.json)

- Top-level fields:
	- `department`: department name
	- `meta`: dashboard metadata (quarter labels, metric definitions, weights, role applicability)
	- `members`: array of member records

- Main member columns:
	- Identity: `name`, `role`
	- Monthly totals: `oct`, `nov`, `dec`, `jan`, `feb`, `mar`
	- Quarterly totals: `q4`, `q1`
	- Metric breakdowns:
		- `mq4`: per-month metric objects for Q4 (`oct`/`nov`/`dec`)
		- `mq1`: per-month metric objects for Q1 (`jan`/`feb`/`mar`)
		- `m`: quarter-level metric summary used in Q1 views
	- Text notes: `feedback` (by quarter), `next_step` (by quarter)

All score values are normalized in the range `0..1` (shown as percentages in the dashboard).
