Files
ws-numerik/justfile
2026-01-30 23:38:42 +01:00

22 lines
384 B
Makefile

# List all targets by providing no target
default:
@just --list
# Setup python environment with uv
setup:
uv sync
# Run the python main entrypoint
test:
uv run python main.py
# Build document and open in zathura
build:
rm main.pdf
typst compile main.typ
zathura main.pdf >/dev/zero 2>&1 & disown
# Format code in place
format:
typstyle -i main.typ