Open-source Stripe Sigma alternative
// readme
opensigma
Your Stripe data, in your own database. Free, open source, no Sigma bill.
A free, open-source replacement for Stripe Sigma and Stripe Data Pipeline. It mirrors your Stripe account into a Cloudflare D1 database so you can query it, join it against your own data, and build dashboards on top — without paying Stripe a second time for data you already gave them.
It replicates the core behaviour of stripe/sync-engine, but runs entirely on Cloudflare Workers + D1 + Queues instead of Postgres and a long-lived server.
What you get
- Every billing-core object as a queryable SQLite row — 25 synced Stripe resources, mirroring sync-engine’s Postgres column set, ported to SQLite.
- Webhook-driven freshness. Rows update seconds after they change in Stripe. Out-of-order
deliveries are dropped by a per-row
last_event_atguard. - Historical backload, paged from the Stripe REST API on an hourly cron, with a queue that…