mirror of
https://github.com/tgorordo/carousel.git
synced 2026-06-05 18:12:14 -07:00
init commit. modeled on tgorordo/smithy, still lots TODO
This commit is contained in:
commit
8bc048c0ee
14 changed files with 2659 additions and 0 deletions
39
justfile
Normal file
39
justfile
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
list:
|
||||
just --list
|
||||
|
||||
run *args:
|
||||
uv run src/carouselcmd.py {{args}}
|
||||
|
||||
python *arguments:
|
||||
uv run python -c {{arguments}}
|
||||
|
||||
marimo:
|
||||
uv run marimo --edit
|
||||
|
||||
sync *args:
|
||||
uv sync {{args}}
|
||||
|
||||
format:
|
||||
uv run ruff format src test
|
||||
|
||||
check:
|
||||
uv run pyright src
|
||||
|
||||
test:
|
||||
uv run pytest -vvv --tb=short --log-cli-level=INFO
|
||||
|
||||
compile:
|
||||
uv run --with-requirements src/carouselcmd.py pyinstaller --clean -F src/carouselcmd.py
|
||||
|
||||
clean:
|
||||
uv run pyclean src test
|
||||
uv run ruff clean
|
||||
rm -rf carouselcmd.spec carouselgui.spec build dist .pytest_cache .hypothesis .benchmarks __marimo__
|
||||
|
||||
wipe:
|
||||
just clean
|
||||
rm -rf .venv
|
||||
|
||||
lock:
|
||||
uv lock
|
||||
uv pip compile pyproject.toml -o requirements.txt --group dev
|
||||
Loading…
Add table
Add a link
Reference in a new issue