Getting Started
Get your first Acme app running in under 2 minutes.
Prerequisites
- Node.js 18+
- An Acme account (sign up free)
Install the CLI
npm install -g acme-cli
Create a project
acme init my-app
cd my-app
This scaffolds a new project with sensible defaults:
my-app/
├── src/
│ ├── index.ts
│ └── routes/
│ └── hello.ts
├── acme.config.ts
├── package.json
└── tsconfig.json
Run locally
acme dev
Open http://localhost:3000 — you should see the welcome page.
Deploy
acme deploy
Your app is live at my-app.acme.sh. Every push auto-deploys.
Tip: Connect your GitHub repo in the dashboard for automatic deploys on push.
Next steps
- Configuration — Environment variables, regions, and scaling
- Deployment — Custom domains, CI/CD, rollbacks