Getting Started

Get your first Acme app running in under 2 minutes.

Prerequisites

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