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