mirror of
https://github.com/nikdoof/ohayodash.git
synced 2025-12-11 09:02:18 +00:00
6 lines
246 B
Makefile
6 lines
246 B
Makefile
.PHONY: lint
|
|
lint:
|
|
uv run --dev ruff check --output-format=github --select=E9,F63,F7,F82 --target-version=py39 .
|
|
uv run --dev -m ruff check --output-format=github --target-version=py39 .
|
|
serve:
|
|
uv run --dev -m flask --app ohayodash.app:app run
|