Installation
Get APSO running on your machine.
Prerequisites
| Dependency | Version | Purpose |
|---|---|---|
| Node.js | 18+ | Runtime |
| npm | 8+ | Package manager (ships with Node) |
| Docker | Any recent | Local PostgreSQL for development |
node --version # v18.x.x or higher
npm --version # 8.x.x or higherInstall the CLI
npm install -g @apso/cliVerify:
apso --versionLog in to APSO
If you are using APSO Cloud, authenticate with the platform:
apso loginThis opens a browser window to complete authentication. Once logged in, the CLI stores your credentials locally.
Check your session:
apso whoamiCreate your first project
apso init my-api
cd my-apiThis creates a new project directory with a .apsorc schema file and a ready-to-run NestJS backend.
Next steps
Last updated on