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.
Deploy via CLI
Section titled “Deploy via CLI”-
Build your project locally (optional — Acme can build remotely too):
Terminal window npm run build -
Deploy to production:
Terminal window acme deploy --production -
Verify the deployment:
Terminal window acme status
Preview Environments
Section titled “Preview Environments”Every pull request can automatically receive a preview deployment. Enable this in your project settings or deploy manually:
acme deploy --previewPreview URLs follow the pattern https://<branch>--<project>.preview.acme-platform.com.
Deployment Targets
Section titled “Deployment Targets”Acme Platform deploys to Cloudflare Workers by default. Edge-deployed functions run in 300+ locations worldwide with sub-millisecond cold starts.
For containerized workloads, export a Dockerfile and deploy to any container registry:
acme export --format dockerdocker build -t my-app .Static sites are deployed to a global CDN with automatic cache invalidation on each deploy.
Rollbacks
Section titled “Rollbacks”If a deployment introduces a regression, roll back to the previous version instantly:
acme rollback --productionNext Steps
Section titled “Next Steps”Read the Configuration guide to learn how to manage environment variables and feature flags across environments.