feat: initial Speedboard implementation

sitespeed.io web UI with Express/Pug/SQLite — port 3132.
Includes job queue, SSE live log, full metrics dashboard,
site history, CO2/axe/CWV sections, and Docker support.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-06 19:36:13 +02:00
commit 280e5f133f
28 changed files with 1222 additions and 0 deletions

11
routes/history.js Normal file
View File

@@ -0,0 +1,11 @@
import { Router } from 'express';
import { getHistory } from '../db.js';
const router = Router();
router.get('/', (req, res) => {
const jobs = getHistory(200);
res.render('history', { title: 'Test History', jobs });
});
export default router;