The operating layer for ambitious internet companies.

Ship faster. Integrate deeper. Stay accountable.

Acme Corp control plane

Ready to ship?

Install the CLI and have a service deployed in under fifteen minutes.


Apps & Packages

Everything in the monorepo.

Browse the dashboard app, the edge runtime, and the official SDK.

Apps

Standalone applications and runnable services — APIs, workers, web apps, and anything that deploys independently.

Packages

Reusable modules shared across the codebase — libraries, utilities, configs, SDKs, and internal tooling.

Type-safe by default

One config. Validated at boot.

Acme services are described by acme.config.ts. The SDK validates against your live database schema on deploy — drift never ships.

  • Typed handlers, typed events, typed database
  • Schema drift caught at typecheck time
  • Feature flags + audit retention next to code
  • Per-environment overrides without forking
Read configuration
import { defineConfig } from '@acme/sdk'

export default defineConfig({
  name: 'billing',
  regions: ['us-east', 'eu-west'],
  database: { pool: { min: 2, max: 16 } },
  flags: {
    invoice_v2: { default: false, owner: 'platform@acme.co' },
  },
})