Features
Rytora BuildLabs Cloud
Full-stack hosting with built-in database, CI/CD pipeline, and auto-deploy. Your apps run on dedicated Kubernetes pods with production builds, custom domains, and automatic SSL — no infrastructure setup required.
How it works
Rytora BuildLabs Cloud is a connector that you enable in your project settings. Once enabled, it provisions a Kubernetes pod, a Supabase project, and a public subdomain with SSL. Every time you generate or iterate on your app, the Cloud connector automatically deploys a full production build.
1
Enable Cloud connector
2
Describe your app
3
Auto-deployed to production
Build pipeline
Every Cloud deploy runs a complete CI/CD pipeline inside your Kubernetes pod. The build progress is shown in real-time with a floating panel that persists across page refreshes.
Extract code
Parse generated files from the latest conversation
Sync files
Write files to NFS volume + configure .env with DATABASE_URL and custom env vars
Install frontend deps
bun install in /app/frontend
Configure Supabase
Set up Supabase client and environment variables
Apply database migrations
Push schema changes to Supabase database
Seed database
Run seed scripts for demo/initial data (if seed file exists)
Build frontend
npx vite build for production-optimized static files
Start services
Launch production server (vite preview)
Key features
Full CI/CD Production Build
Every deploy runs a complete build pipeline: dependency installation (Bun/npm), Supabase configuration, database migration, seed data, frontend build (Vite), and production server startup. No more dev mode in production.
Persistent Build Progress
Build state is persisted in the database. If you refresh the page or navigate away, the build continues server-side and you can reconnect to see real-time progress when you return.
Auto-Deploy After Generation
When the Cloud connector is enabled with auto-deploy permission set to ‘Always allow’, every successful code generation automatically triggers a production deploy. No manual deploy button needed.
Permanent Kubernetes Pods
Cloud apps run on dedicated Kubernetes pods with auto-restart on crash, health checks, and resource limits. Pods persist until you explicitly suspend or disable Cloud.
Custom Domains & SSL
Every Cloud app gets a subdomain at *.app.buildlabs.rytora.ai with automatic SSL via Let’s Encrypt. Business and Enterprise plans can add custom domains with CNAME DNS verification.
Environment Variables
Manage environment variables (JWT_SECRET, API keys, etc.) through the Cloud connector UI. Variables are encrypted at rest and injected into your container at deploy time.
Supabase Integration
Each Cloud project gets its own Supabase project with database, auth, and storage. Environment variables are automatically injected into your application. Connect your own Supabase project if preferred.
Zero-Downtime Deploys
Code is synced to NFS shared volumes. The build pipeline runs inside the pod, and production servers are started after the build completes. Your app stays live during the entire process.
Plans & pricing
Cloud is available on Pro plans and above. Each Cloud project costs a flat $9/month with no usage-based surprises.
| Plan | Cloud Projects | Domains | Price |
|---|---|---|---|
| Pro | 3 projects | Subdomain only | $9/mo per project |
| Business | 10 projects | Custom domains | $9/mo per project |
| Enterprise | Unlimited | Custom domains | Custom pricing |
Connector permissions
The Cloud connector exposes granular tool-level permissions. Each tool can be set to Always allow (automatic), Ask each time (manual approval), or Never allow (blocked).
Enable Cloud
Provision Kubernetes pod and database
Where projects are hosted
Select hosting region
Read database
Query data from tables
Modify database
Run migrations, alter schema
Add data
Seed or insert records
Configure auth
Authentication settings
Read service logs
View service logs
Run security checks
Automated security audits
Auto-deploy after generation
Deploy automatically on every code generation