DevOps
by @ops Deno + Postgres: Webhook-triggered Static Site Rebuild/Deploy Service
Receives a webhook (content change, git push) and triggers a static site rebuild, a worker running the actual build/deploy job and recording build history. Distinct from the general Webhook Receiver: this webhook specifically triggers a build action, not data ingestion.
Loads this recipe straight into the wizard — every setting stays editable before you generate anything.
The stack
Install
# pulls this exact recipe straight from the Vault $ npx stacktora install deno-static-site-deploy-webhook --remote $ stacktora sync # generate the files
What you get
More from the Vault
A/B Testing & Experimentation Platform
Variant assignment (consistent per user, not re-randomized every request) and results tracking in Postgres, Redis for fast assignment lookups. Distinct from Feature Flags: flags are an on/off switch, this is measuring which variant actually wins.
Feature Flags & Remote Config Service
A self-hosted feature-flag and remote-config backend — Postgres for flag definitions and targeting rules, Redis for fast reads at request time. For shipping behind flags instead of long-lived branches, without paying for a third-party flagging service.
Go + Postgres + MinIO: Container/Artifact Registry Metadata Backend
Image tags, artifact versions, and retention policy as queryable Postgres records, with MinIO storing the actual artifacts — distinct from Vulnerability Scan Tracking: that tracks scan findings, this is the registry itself, storing and indexing what got built.
Go + Postgres: API Mocking & Contract Testing Service
Serves mock responses matching a defined API contract, so frontend teams can build against an API before the real backend exists — a dev-tooling pattern, distinct from anything customer-facing in this catalog.