Store compiled binaries, build outputs, and release artifacts. Download them by version. The thing between your CI and your deploy that everyone glues together with S3.
Every operation in Ironworks is available through a JSON REST API. No SDK required — use curl, fetch, or any HTTP client.
GET /api/artifacts — list all artifacts with optional search and filter query parametersPOST /api/artifacts — create a new artifact recordGET /api/artifacts/{id} — retrieve a single artifact by IDPUT /api/artifacts/{id} — update an existing artifactDELETE /api/artifacts/{id} — remove a artifactGET /api/stats — aggregated statistics with status breakdownGET /api/health — health check endpoint for monitoringEvery artifact your team creates contains context that matters — name, build id, version, platform, size bytes. When that data lives in a third-party service, you are one acquisition or policy change away from losing access. Ironworks keeps it local.
Download the binary and run it. Ironworks starts serving immediately with a dashboard at localhost and a REST API for automation. No cloud account, no API keys to provision, no monthly invoice. Your data lives in a SQLite file you can back up, move, or query directly.
Start Ironworks 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 artifacts through the web interface or POST JSON to the API. Filter by build id, version, or search by keyword. Update records with PUT, delete with DELETE. The stats endpoint returns aggregate counts grouped by status for monitoring.
GET /api/artifacts — List all artifacts. Supports ?q=keyword for search and ?status=value for filteringPOST /api/artifacts — Create a new artifact. Send JSON with at least nameGET /api/artifacts/{id} — Fetch one artifact by IDPUT /api/artifacts/{id} — Update fields on an existing artifactDELETE /api/artifacts/{id} — Remove a artifactGET /api/stats — Returns total count and breakdown by statusGET /api/health — Returns {"status":"ok"} for uptime monitoringSelf-hosted build artifact storage. Self-hosted on your infrastructure. Your data never leaves your server.
curl -fsSL https://stockyard.dev/install.sh | sh -s -- --tool ironworks
PORT=10000 ./ironworks
http://localhost:10000
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 IRONWORKS_LICENSE_KEY=stockyard_xxxxxxxxxxxxxxxxxxxx ./ironworks
No cloud connectivity required. The binary validates the key offline with Ed25519 signatures.