Skip to content

Quick Start

Scaffold a new project

Terminal window
sscli new --template rails-api --name my-api

This downloads and configures the rails-api template into a my-api/ directory.

Explore available templates

Terminal window
# Interactive TUI browser
sscli explore
# Plain list (pipe-safe)
sscli explore --list
# JSON output (for scripts)
sscli explore --json

Start local development

Terminal window
cd my-api
docker compose up

Every template ships with a pre-configured docker-compose.yml. No bare-process startup required.

Add features later

Terminal window
sscli inject --path ./my-api --features commerce

Features can be injected into an existing project at any time.

Check deploy readiness

Terminal window
sscli ready

Run this before any deployment to validate the project structure and dependencies.

Next steps

Command Reference