feat: deliver installable local alpha sessions
Some checks failed
tamq-ci / test (push) Failing after 6s
Some checks failed
tamq-ci / test (push) Failing after 6s
Assistant: codex Assistant-Model: gpt-5.6-sol Assistant-Session: 01a03397-4d51-7fd1-8ff2-946eb22ea2bc
This commit is contained in:
parent
d56bd3c79f
commit
5774fbd548
18 changed files with 890 additions and 94 deletions
11
Makefile
11
Makefile
|
|
@ -1,4 +1,13 @@
|
|||
.PHONY: test check
|
||||
.PHONY: install uninstall test check
|
||||
|
||||
install:
|
||||
@command -v uv >/dev/null || { echo "tamq: uv is required; install it from https://docs.astral.sh/uv/" >&2; exit 1; }
|
||||
uv tool install --force --reinstall --refresh .
|
||||
@command -v tamq >/dev/null || { echo "tamq: installed, but the uv tool bin directory is not on PATH; run 'uv tool update-shell'" >&2; exit 1; }
|
||||
tamq --version
|
||||
|
||||
uninstall:
|
||||
uv tool uninstall tmux-amq
|
||||
|
||||
test:
|
||||
uv run pytest
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue