Define project templates, generate new projects from them via API or web UI. Your own create-react-app generator for any stack, with team-shared templates.
A non-profit with no DevOps budget downloads the Scaffold binary, sets two environment variables, and runs it on the same Linux box that handles their email. It has been running for three months without intervention. When they need to update, they download the new binary and restart the process.
Every template your team creates contains context that matters — name, content, variables, language, status. When that data lives in a third-party service, you are one acquisition or policy change away from losing access. Scaffold keeps it local.
GET /api/templates — List all templates. Supports ?q=keyword for search and ?status=value for filteringPOST /api/templates — Create a new template. Send JSON with at least nameGET /api/templates/{id} — Fetch one template by IDPUT /api/templates/{id} — Update fields on an existing templateDELETE /api/templates/{id} — Remove a templateGET /api/stats — Returns total count and breakdown by statusGET /api/health — Returns {"status":"ok"} for uptime monitoringInstall Scaffold with the one-line shell script or download the binary directly from GitHub. Run it, open /ui, and start creating templates. The SQLite database lives in a single file under the data directory. To migrate to a new server, copy the binary and the data directory. That is the entire migration procedure.
Self-hosted project scaffolding server. Self-hosted on your infrastructure. Your data never leaves your server.
curl -fsSL https://stockyard.dev/install.sh | sh -s -- --tool scaffold
PORT=9120 ./scaffold
http://localhost:9120
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 SCAFFOLD_LICENSE_KEY=stockyard_xxxxxxxxxxxxxxxxxxxx ./scaffold
No cloud connectivity required. The binary validates the key offline with Ed25519 signatures.