Ship faster. Integrate deeper. Stay accountable.
Install the CLI and have a service deployed in under fifteen minutes.
A typed SDK, an OpenAPI spec, a managed edge runtime, and a control plane — all wired together before you write your first handler.
Browse the dashboard app, the edge runtime, and the official SDK.
Standalone applications and runnable services — APIs, workers, web apps, and anything that deploys independently.
Reusable modules shared across the codebase — libraries, utilities, configs, SDKs, and internal tooling.
Acme services are described by acme.config.ts. The SDK validates against your live database schema on deploy — drift never ships.
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' },
},
})