Files
2026-01-06 18:08:29 +03:00

15 lines
265 B
Makefile

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