Rebyte Cloud
Deploy web applications with zero configuration. No API keys, no cloud accounts, no setup.
For Non-Technical Users
IMPORTANT: This skill is designed for non-technical users.
- DO NOT explain commands or show bash/terminal syntax to the user
- DO NOT ask the user to run commands themselves
- DO NOT give technical instructions like "run this command"
- JUST EXECUTE and show results directly
- Keep responses focused on outcomes, not technical steps
Common Mistakes to Avoid
- Showing dev server output: Never show "localhost:3000" or similar - the user can't access it and doesn't care
- Running
npm run dev: Don't start dev servers and show the output. Export/build instead.
- Explaining installation steps: Just install dependencies silently
- Showing terminal output: Unless it's an error you need to debug, hide it
- Asking "should I run X?": Just run it
What Are You Deploying?
| Language / Framework |
Mode |
Guide |
| Next.js, Nuxt, Remix, SvelteKit, Astro SSR |
Auto-detect — rebyte build && rebyte deploy |
guides/nodejs-frameworks.md |
| Vite, Gatsby, CRA, plain HTML |
Auto-detect or manual |
guides/static-sites.md |
| Python (FastAPI, Flask, Django) |
Manual — create .rebyte/ + rebyte deploy |
guides/python.md |
| Go (Gin, Echo, Chi) |
Manual — compile binary + rebyte deploy |
guides/go.md |
| Rust (Axum, Actix Web, Rocket) |
Manual — compile binary + rebyte deploy |
guides/rust.md |
NOT Supported
Do NOT attempt to deploy these — they will fail:
- Express, Fastify, Koa, Hono — raw Node.js HTTP servers. Use Next.js API routes or a full framework instead.
- Docker containers — Rebyte is serverless (Lambda + CDN), not container-based.
External databases are fine. Rebyte doesn't host Postgres/MySQL/MongoDB, but your Lambda can connect to any external database via environment variables in .env.production.
CLI Reference
For all CLI commands (deploy, info, logs, delete), see reference/cli.md.
Config Reference
For rebyte.json (Python/Go/Rust builds), see reference/rebyte-json.md. Node.js projects should NOT use rebyte.json — use auto-detect instead.
1---2name: rebyte-app-builder3description: Deploy web applications to Rebyte Cloud — a managed deployment platform (like Vercel). Supports Node.js SSR frameworks (auto-detect), static sites, Python, Go, and Rust backends. Deploys via `rebyte deploy` with zero configuration for Node.js, or via `rebyte.json` for other languages.4---56# Rebyte Cloud78Deploy web applications with zero configuration. No API keys, no cloud accounts, no setup.910## For Non-Technical Users1112**IMPORTANT:** This skill is designed for non-technical users.1314- **DO NOT** explain commands or show bash/terminal syntax to the user15- **DO NOT** ask the user to run commands themselves16- **DO NOT** give technical instructions like "run this command"17- **JUST EXECUTE** and show results directly18- Keep responses focused on outcomes, not technical steps1920### Common Mistakes to Avoid2122- **Showing dev server output**: Never show "localhost:3000" or similar - the user can't access it and doesn't care23- **Running `npm run dev`**: Don't start dev servers and show the output. Export/build instead.24- **Explaining installation steps**: Just install dependencies silently25- **Showing terminal output**: Unless it's an error you need to debug, hide it26- **Asking "should I run X?"**: Just run it2728## What Are You Deploying?2930| Language / Framework | Mode | Guide |31|---------------------|------|-------|32| **Next.js, Nuxt, Remix, SvelteKit, Astro SSR** | Auto-detect — `rebyte build && rebyte deploy` | `guides/nodejs-frameworks.md` |33| **Vite, Gatsby, CRA, plain HTML** | Auto-detect or manual | `guides/static-sites.md` |34| **Python** (FastAPI, Flask, Django) | Manual — create `.rebyte/` + `rebyte deploy` | `guides/python.md` |35| **Go** (Gin, Echo, Chi) | Manual — compile binary + `rebyte deploy` | `guides/go.md` |36| **Rust** (Axum, Actix Web, Rocket) | Manual — compile binary + `rebyte deploy` | `guides/rust.md` |3738## NOT Supported3940Do NOT attempt to deploy these — they will fail:4142- **Express, Fastify, Koa, Hono** — raw Node.js HTTP servers. Use Next.js API routes or a full framework instead.43- **Docker containers** — Rebyte is serverless (Lambda + CDN), not container-based.4445**External databases are fine.** Rebyte doesn't host Postgres/MySQL/MongoDB, but your Lambda can connect to any external database via environment variables in `.env.production`.4647## CLI Reference4849For all CLI commands (`deploy`, `info`, `logs`, `delete`), see `reference/cli.md`.5051## Config Reference5253For `rebyte.json` (Python/Go/Rust builds), see `reference/rebyte-json.md`. Node.js projects should NOT use `rebyte.json` — use auto-detect instead.