Point at a directory of Markdown files, get a searchable documentation site. Docusaurus without the React build pipeline and the npm audit warnings every six months.
A regulated company runs Typeset inside their air-gapped network. No data leaves the building. Compliance auditors can inspect the SQLite file directly. When the team needs a report, they query the API and format the output however the auditor expects.
The moment you store pages in someone else's cloud, you have accepted their terms, their pricing changes, and their uptime. Typeset puts that decision back in your hands with a standalone binary that runs anywhere you can run a Linux process.
GET /api/pages — List all pages. Supports ?q=keyword for search and ?status=value for filteringPOST /api/pages — Create a new page. Send JSON with at least titleGET /api/pages/{id} — Fetch one page by IDPUT /api/pages/{id} — Update fields on an existing pageDELETE /api/pages/{id} — Remove a pageGET /api/stats — Returns total count and breakdown by statusGET /api/health — Returns {"status":"ok"} for uptime monitoringStart Typeset with a port and a data directory. It creates its SQLite database on first run and serves both the API and the dashboard on the same port. Create pages through the web interface or POST JSON to the API. Filter by body, site id, or search by keyword. Update records with PUT, delete with DELETE. The stats endpoint returns aggregate counts grouped by status for monitoring.
Self-hosted documentation generator. Self-hosted on your infrastructure. Your data never leaves your server.
curl -fsSL https://stockyard.dev/install.sh | sh -s -- --tool typeset
PORT=9240 ./typeset
http://localhost:9240
Single binary. Embedded SQLite. No Docker. No database. No dependencies.
Your license key arrives by email within 5 minutes of checkout. Set it as an environment variable and restart the binary.
export TYPESET_LICENSE_KEY=stockyard_xxxxxxxxxxxxxxxxxxxx ./typeset
No cloud connectivity required. The binary validates the key offline with Ed25519 signatures.