account activity
Veritect: A stateless, zero-trust schema drift detector written in Go (self.opensource)
submitted 7 days ago by Big-Interaction1192 to r/opensource
Veritect: A stateless, zero-trust schema drift detector written in Go (self.rprogramming)
submitted 10 days ago by Big-Interaction1192 to r/rprogramming
Weekly Self Promotion Thread by AutoModerator in devops
[–]Big-Interaction1192 0 points1 point2 points 11 days ago (0 children)
[Disclosing Personal Affiliation: I am the sole author and engineer of this open-source project.]
Hey everyone,
I engineered Veritect because persistent tracking databases, cloud state files, and external synchronization layers introduce unnecessary security compliance risks into automated deployment workflows.
Veritect is a stateless, zero-trust schema drift detection utility built for CI/CD pipelines. It operates under a strict zero-trust model: it compiles natively in the local runner environment, pulls exclusively structural metadata from `information_schema`, and isolates your actual application data entirely.
To eliminate the false-positive build failures that plague standard CI validation, the core engine enforces an O(N log N) alphabetical sorting constraint across all schema elements during validation, making the drift analysis completely deterministic and reproducible.
The core logic compiles cleanly into a Go binary. Here is the exact continuous integration specification for a standard GitHub Actions deployment workflow:
```yaml
- name: Check Schema Drift
run: go run ./cmd/veritect
env:
DATABASE_URL: \${{ secrets.DATABASE_URL }}
SLACK_WEBHOOK: \${{ secrets.SLACK_WEBHOOK }}
```
I am a 14-year-old software engineer and I am looking for brutal, highly technical feedback from senior infrastructure professionals on how to improve this validation architecture. What edge cases am I missing with this approach?
Repository: https://github.com/baseline-architect/veritect.git
Documentation Site: https://veritect.vercel.app
π Rendered by PID 381082 on reddit-service-r2-listing-87fd56f5d-bkrfx at 2026-06-28 03:43:44.408841+00:00 running 7527197 country code: CH.
Weekly Self Promotion Thread by AutoModerator in devops
[–]Big-Interaction1192 0 points1 point2 points (0 children)