Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Quick Setup

Prerequisites

  • Docker and Docker Compose
  • Rust 1.91+
  • mise (recommended)

Launch Services

mise install
mise backend:run

Services available at http://localhost:3000 (API and Web UI).

Default credentials: admin@example.com / password or test@example.com / password

Build CLI

cargo build --bin rise

First Steps

# Login (opens browser for OAuth)
rise login

# Create a project
rise project create my-app --visibility public

# Deploy
rise deployment create my-app --image nginx:latest

See Authentication for authentication details and CLI Guide for all commands.

Web UI

Navigate to http://localhost:3000 for the web dashboard (OAuth2 PKCE authentication, projects/teams management, deployment tracking).

Reset Environment

docker-compose down -v
cargo clean
mise backend:run

Next Steps