One place to run the business.
Take an order, pick it from inventory, ship it, invoice the customer, pay the vendor, close the month — all in the same system, on the same ledger. No nightly sync jobs, no reconciling two systems that disagree. Built for teams that have outgrown QuickBooks but don't want enterprise software baggage.
Four design choices that shape everything
Modular monolith
Each accounting domain — ledger, AR, AP, cash, inventory, rev-rec — is a bounded context with its own service layer. One deployment, clear boundaries, no distributed-transaction pain.
Single source of truth
Every subledger posts to the same general ledger. Subsidiary totals equal GL control accounts by design, not by a nightly reconciliation job.
Tenant-safe by construction
Row-level tenant scoping lives in middleware, not sprinkled through queries. A missing tenant context throws instead of leaking data across customers.
Serverless by default
Lambda + API Gateway + Postgres on AWS. Cold-start budgets are tracked in ops runbooks. You pay for what you use and scale to zero overnight.
What's in the box
The foundation you need to run a real finance org — not a long tail of integrations you have to stitch together yourself.
- Double-entry general ledger with configurable chart of accounts
- Soft-close and hard-close for period controls
- Multi-entity consolidation (full, proportional, equity methods)
- Multi-currency with daily FX revaluation
- Dimensions: department, project, location, and custom tags
- Append-only journals with signed audit trail
- Role-based permissions with segregation-of-duties checks
- Per-tenant backup, restore, and GDPR-compliant erasure