Files
awesome-python/Makefile
Vinta Chen 177183d9bd add custom website build system
Replaces MkDocs with a bespoke Python site generator using Jinja2 templates
and Markdown. Adds uv for dependency management, GitHub Actions workflow for
deployment, and Makefile targets for local development (fetch_stars, build,
preview, deploy).

Co-Authored-By: Claude <noreply@anthropic.com>
2026-03-18 13:48:49 +08:00

15 lines
286 B
Makefile

site_install:
uv sync --no-dev
fetch_stars:
uv run python website/fetch_github_stars.py
site_build:
uv run python website/build.py
site_preview: site_build
python -m http.server -d website/output/ 8000
site_deploy: site_build
@echo "Deploy via GitHub Actions (push to master)"