Files
Quizzi/justfile
T
2026-01-01 03:23:00 +03:00

15 lines
253 B
Makefile

set windows-shell := ["powershell.exe", "-NoLogo", "-Command"]
set shell := ["bash", "-c"]
dev:
watchfiles --filter python ".venv/Scripts/python -m trudex.application" src
run:
python -m trudex
lint:
ruff check src
format:
isort src