DevOps
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.
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 python-config-drift-detection --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.
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.
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.