From b638ec938509375e13ec8d476a98b8a772184f1d Mon Sep 17 00:00:00 2001 From: Adam Ladachowski Date: Sat, 14 Feb 2026 21:49:53 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=AC=20Commit=20message:=20Update=20202?= =?UTF-8?q?6-02-14=2021:49:53,=201=20files,=208=20lines?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 📁 Files changed: 1 📝 Lines changed: 8 • justfile --- justfile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/justfile b/justfile index 16ee9b0..c46de24 100644 --- a/justfile +++ b/justfile @@ -26,3 +26,11 @@ lint: # Type check only types: uv run mypy tensors/ + +# Run UI dev server with hot reload +ui-dev: + cd tensors/server/ui && npm run dev + +# Build UI for production +ui-build: + cd tensors/server/ui && npm run build