mirror of
https://github.com/koloideal/DutyLog.git
synced 2026-06-10 02:15:30 +03:00
18 lines
335 B
Makefile
18 lines
335 B
Makefile
set shell := ["bash", "-c"]
|
|
set windows-shell := ["powershell.exe", "-c"]
|
|
|
|
default:
|
|
@just --list
|
|
|
|
install:
|
|
uv sync
|
|
|
|
install-dev:
|
|
uv sync --group dev
|
|
|
|
run:
|
|
uv run python -m dutylog.application
|
|
|
|
dev:
|
|
uv run watchmedo auto-restart --directory=./src --pattern="*.py" --recursive -- uv run python -m dutylog.application
|