vf-site/Makefile

10 lines
171 B
Makefile

build:
@pipenv run python -m lib.main
run: build
@cd dist && pipenv run python -m http.server
lint:
@pipenv run black .
@pipenv run ruff . --fix
@pipenv run mypy .