whisperkey / Makefile
chiruu12's picture
Deploy: working gr.Server frontend + review fixes
5a811e2 verified
Raw
History Blame Contribute Delete
267 Bytes
.PHONY: install run dev lint format test
install:
uv sync
run:
uv run python app.py
dev:
uv run gradio app.py
lint:
uv run ruff check src/ tests/ app.py modal_app.py
format:
uv run ruff format src/ tests/ app.py modal_app.py
test:
uv run pytest tests/ -v