ccboard-web 0.9.0

Web frontend for ccboard using Leptos + Axum
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>ccboard - Claude Code Dashboard</title>
    <link data-trunk rel="rust" data-bin="ccboard-web" data-type="main" data-wasm-opt="0" />
    <link data-trunk rel="css" href="static/style.css" />
    <link data-trunk rel="css" href="static/reset.css" />
    <link data-trunk rel="copy-dir" href="static" />
    <!-- D3.js for task dependency graph visualization -->
    <script src="https://d3js.org/d3.v7.min.js"></script>
    <script src="/static/js/d3-graph.js"></script>
</head>
<body>
    <div id="app"></div>
</body>
</html>