Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ plus the jobs the view enqueues (`send_invoice_email.delay`, `rebuild_ledger.sen

## App

`loadpath serve --port 7345` opens a local desktop-style UI. Tokens stay on the machine in `~/.loadpath/settings.json`. AI is used **only** for residual uncertainty the graph cannot close. The rail and Settings page ship a dozen themes (Obsidian, Nord, Solarized, Paper, high-contrast, …); the choice stays in `localStorage`. Last repo, git range, and SCM slug are remembered the same way. Copy the markdown brief, or post **one** PR comment (updated in place) from the Review tab.
`loadpath serve --port 7345` opens a local desktop-style UI: icon rail, labeled toolbar, merge-box confidence, and an inspectable impact graph. Tokens stay on the machine in `~/.loadpath/settings.json`. AI is used **only** for residual uncertainty the graph cannot close. A dozen themes (Obsidian, Nord, Solarized, Paper, high-contrast, …) live in Settings and `localStorage`. Last repo, git range, and SCM slug are remembered the same way. Copy the markdown brief, or post **one** PR comment (updated in place) from the Review tab. Keyboard: `1`–`5` switches tabs. Outside Settings and Pull requests, `⌘`/`Ctrl`+`Enter` runs a review.

### Review

Expand Down
Binary file modified docs/screenshots/architecture.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/screenshots/graph.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/screenshots/pull-requests.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/screenshots/review.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/screenshots/settings.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
62 changes: 62 additions & 0 deletions src/loadpath/static/assets/index-5LvtBaA5.js

Large diffs are not rendered by default.

62 changes: 0 additions & 62 deletions src/loadpath/static/assets/index-Dmb_oKHM.js

This file was deleted.

Large diffs are not rendered by default.

6 changes: 4 additions & 2 deletions src/loadpath/static/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,16 @@
try {
var t = localStorage.getItem("loadpath.theme");
if (t) document.documentElement.setAttribute("data-theme", t);
var light = { paper: 1, "solarized-light": 1, seafoam: 1, "high-contrast": 1 };
document.documentElement.style.colorScheme = light[t] ? "light" : "dark";
} catch (e) {}
})();
</script>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;600&family=IBM+Plex+Sans:wght@400;500;600;700&display=swap" rel="stylesheet" />
<script type="module" crossorigin src="./assets/index-Dmb_oKHM.js"></script>
<link rel="stylesheet" crossorigin href="./assets/index-DF6aw0I2.css">
<script type="module" crossorigin src="./assets/index-5LvtBaA5.js"></script>
<link rel="stylesheet" crossorigin href="./assets/index-YwQandBA.css">
</head>
<body>
<div id="root"></div>
Expand Down
2 changes: 2 additions & 0 deletions ui/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
try {
var t = localStorage.getItem("loadpath.theme");
if (t) document.documentElement.setAttribute("data-theme", t);
var light = { paper: 1, "solarized-light": 1, seafoam: 1, "high-contrast": 1 };
document.documentElement.style.colorScheme = light[t] ? "light" : "dark";
} catch (e) {}
})();
</script>
Expand Down
Loading
Loading