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
- Learn CLI commands: See CLI Guide
- Understand deployments: See Deployments
- Build images: See Building Images
- Set up production: See Production Deployment