2026-03-18 13:57:32 +08:00
|
|
|
-include .env
|
|
|
|
|
export
|
|
|
|
|
|
2026-03-18 18:28:27 +08:00
|
|
|
install:
|
|
|
|
|
uv sync
|
2015-06-07 03:36:52 +08:00
|
|
|
|
2026-03-18 22:08:35 +08:00
|
|
|
fetch_github_stars:
|
2026-03-18 13:48:49 +08:00
|
|
|
uv run python website/fetch_github_stars.py
|
2015-06-09 19:19:41 +08:00
|
|
|
|
2026-03-18 20:33:36 +08:00
|
|
|
test:
|
|
|
|
|
uv run pytest website/tests/ -v
|
|
|
|
|
|
2026-03-18 18:28:27 +08:00
|
|
|
build:
|
2026-03-18 13:48:49 +08:00
|
|
|
uv run python website/build.py
|
2015-06-07 03:36:52 +08:00
|
|
|
|
2026-03-18 18:28:27 +08:00
|
|
|
preview: build
|
|
|
|
|
uv run watchmedo shell-command \
|
|
|
|
|
--patterns='*.md;*.html;*.css;*.js;*.py' \
|
|
|
|
|
--recursive \
|
|
|
|
|
--wait --drop \
|
|
|
|
|
--command='uv run python website/build.py' \
|
|
|
|
|
README.md website/templates website/static website/data & \
|
|
|
|
|
python -m http.server -b 127.0.0.1 -d website/output/ 8000
|