SPB Git forge

spb/trawls

Public
3commits 1branches 0releases
456.0 KBsize
maindefault branch
18 days agolast push
Python 76.2% JavaScript 11.3% CSS 6.3% HTML 5.9%
654 B · 30 lines make
Raw Blame History
1.PHONY: install dev serve test lint fmt up down golden-update23install:4	uv venv --python 3.12 || true5	. .venv/bin/activate && uv pip install -e ".[dev]" && playwright install chromium67serve:8	. .venv/bin/activate && trawls serve910dev:11	. .venv/bin/activate && TRAWLS_LOG_LEVEL=DEBUG trawls serve --reload1213test:14	. .venv/bin/activate && pytest -q1516lint:17	. .venv/bin/activate && ruff check . && ruff format --check .1819fmt:20	. .venv/bin/activate && ruff format . && ruff check --fix .2122up:23	docker compose up -d --build2425down:26	docker compose down2728golden-update:29	. .venv/bin/activate && TRAWLS_GOLDEN_UPDATE=1 pytest -q tests/unit/test_html_to_md.py30