Write audit records that can't be modified. Sign them with a key, verify the chain, export for compliance. The immutable audit trail that every regulated business needs.
Run Deposition on any server where you can execute a binary. The dashboard is immediately available at localhost, and the REST API integrates with your existing scripts and workflows. No external dependencies to configure, no managed service to subscribe to.
Self-hosting used to mean spending a weekend configuring Docker, Postgres, Redis, and an Nginx reverse proxy. Deposition skips all of that. It compiles to a static binary with an embedded database, so there is nothing to install and nothing to maintain.
GET /api/records — List all records. Supports ?q=keyword for search and ?status=value for filteringPOST /api/records — Create a new record. Send JSON with at least nameGET /api/records/{id} — Fetch one record by IDPUT /api/records/{id} — Update fields on an existing recordDELETE /api/records/{id} — Remove a recordGET /api/stats — Returns total count and breakdown by statusGET /api/health — Returns {"status":"ok"} for uptime monitoringStart Deposition 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 records through the web interface or POST JSON to the API. Filter by hash, prev hash, or search by keyword. Update records with PUT, delete with DELETE. The stats endpoint returns aggregate counts grouped by status for monitoring.
Self-hosted tamper-evident audit log. Self-hosted on your infrastructure. Your data never leaves your server.
curl -fsSL https://stockyard.dev/install.sh | sh -s -- --tool deposition
PORT=9310 ./deposition
http://localhost:9310
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 DEPOSITION_LICENSE_KEY=stockyard_xxxxxxxxxxxxxxxxxxxx ./deposition
No cloud connectivity required. The binary validates the key offline with Ed25519 signatures.