Skip to content

Deployment

Acme Platform provides a fully managed deployment pipeline with automatic builds, preview environments, and zero-downtime rolling updates. This guide covers the most common deployment workflows.

  1. Build your project locally (optional — Acme can build remotely too):

    Terminal window
    npm run build
  2. Deploy to production:

    Terminal window
    acme deploy --production
  3. Verify the deployment:

    Terminal window
    acme status

Every pull request can automatically receive a preview deployment. Enable this in your project settings or deploy manually:

Terminal window
acme deploy --preview

Preview URLs follow the pattern https://<branch>--<project>.preview.acme-platform.com.

Acme Platform deploys to Cloudflare Workers by default. Edge-deployed functions run in 300+ locations worldwide with sub-millisecond cold starts.

If a deployment introduces a regression, roll back to the previous version instantly:

Terminal window
acme rollback --production

Read the Configuration guide to learn how to manage environment variables and feature flags across environments.