mirror of
https://github.com/tgorordo/carousel.git
synced 2026-06-12 20:42:13 -07:00
sync
This commit is contained in:
parent
6cdc579270
commit
cbedbbeb48
12 changed files with 1582 additions and 591 deletions
22
justfile
22
justfile
|
|
@ -1,14 +1,11 @@
|
|||
list:
|
||||
just --list
|
||||
|
||||
run:
|
||||
uv run carousel
|
||||
#run:
|
||||
# uv run carousel
|
||||
|
||||
python *arguments:
|
||||
uv run python -c "import code; from rich import pretty; pretty.install(); code.interact()" {{arguments}}
|
||||
|
||||
check:
|
||||
uv run pyright src
|
||||
uv run python -c {{arguments}}
|
||||
|
||||
test:
|
||||
uv run pytest -vvv --tb=short --log-cli-level=INFO
|
||||
|
|
@ -16,7 +13,16 @@ test:
|
|||
format:
|
||||
uv run ruff format src test
|
||||
|
||||
compile:
|
||||
check:
|
||||
uv run pyright src
|
||||
|
||||
sync:
|
||||
uv sync --upgrade
|
||||
|
||||
lock:
|
||||
uv pip compile pyproject.toml -o requirements.txt --group dev
|
||||
|
||||
build:
|
||||
uv run pyinstaller src/cli.py
|
||||
uv run pyinstaller src/gui.py
|
||||
|
||||
|
|
@ -29,5 +35,3 @@ wipe:
|
|||
just clean
|
||||
rm -rf .venv
|
||||
|
||||
lock:
|
||||
uv pip compile pyproject.toml -o requirements.txt --group dev
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue