DevOps
DevOps recipes
8 admin-reviewed DevOps starting points in the Vault, each installable with one command. Browse every category →
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.
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.
by @ops
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.
by @ops
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.
by @ops
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.
by @ops
Python + Postgres + Redis + LocalStack: Serverless Local-Dev Starter
A serverless-style backend developed entirely against local AWS emulation: Python API, Postgres for relational data, Redis for caching, and LocalStack standing in for S3, SQS, and other AWS services — full local development with zero real AWS cost or credentials needed.
by @ops
Python + Postgres: Configuration Drift Detection Service
Compares live infrastructure state against declared configuration on a schedule and flags drift — the same problem Stacktora's own compliance auditing solves for a single stacktora.json, generalized as its own standalone service.
by @ops
Translation & Localization String Management
A self-hosted string/translation management service — keys, locales, and translation status per string, Redis-cached for fast lookups at request time. For teams past spreadsheet-based translation handoffs.
by @ops