Skip to content

Commit 7c18e4e

Browse files
committed
build: add ui duty
1 parent f45b884 commit 7c18e4e

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

duties.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,3 +59,9 @@ def version(ctx, *args: str):
5959
"""Bump package version."""
6060
args_str = " " + " ".join(args) if args else ""
6161
ctx.run(f"hatch version{args_str}")
62+
63+
64+
@duty(capture=False)
65+
def ui(ctx, *args: str):
66+
"""Launch Textual UI."""
67+
ctx.run(r"uv run textual run --dev .\src\llmling_textual\app.py")

0 commit comments

Comments
 (0)