SPB Git

spb/modelmap Public License

Internal cartography of local LLMs on Apple Silicon — registered, gated, negative-first. Public atlas at modelmap.io.

Python 66.3% JavaScript 24.5% CSS 8.1% Shell 0.7%
939 B · 35 lines make
Raw Blame History
1# =============================================================================2#  Project   : modelmap3#  File      : Makefile4#  Purpose   : Common tasks — setup, lint, test, headers check, site build/run5#  Author    : Simon-Pierre Boucher6#  Contact   : contact@spboucher.ai7#  Website   : https://modelmap.io8#  Created   : 2026-08-129#  Modified  : 2026-08-1210#  Platform  : macOS / Apple Silicon (arm64)11#  License   : All rights reserved (research code)12# =============================================================================13.PHONY: setup lint test headers site-sync site-run site-deps1415setup:16	python3 -m venv .venv && .venv/bin/pip install -e ".[dev]"1718lint:19	.venv/bin/ruff check src tools benchmarks tests experiments2021test:22	.venv/bin/pytest -q2324headers:25	python3 tools/check_headers.py2627site-deps:28	cd site && npm install2930site-sync:31	site/sync-content.sh3233site-run: site-sync34	cd site && PORT=8140 node server.js35