vibepage vibepage

Documentation

Simple steps to launch your project

Four commands. Register on the website, save your token, deploy from your project folder.

Chill focus repeat — vibepage CLI for calm deploys

Two modes

Live link first. Tunnel when you’re still editing. Deploy to share with friends, or tunnel your laptop on the same URL while you tweak.

vibepage deploy

Static hosting with a subdomain

The fastest way to put your vibe-coded app live. Text the link to friends — then watch traffic and iterate in chat.

vibepage tunnel http://127.0.0.1:8080

Localhost tunnel for live demos

Keep the same public URL, but tunnel it to your laptop. Demo a work-in-progress live — when you stop, traffic falls back to your last static deploy.

Install

Install the vibepage CLI once per machine:

$ curl -fsSL https://vibepage.cloud/install.sh | bash
vibepage token <api-token>

Set your API token

Copy the token from your account page, activate vibepage from your terminal.

$ vibepage token 71710a7c4311d19c2501846eb0ff5676… Token saved API: https://api.vibepage.cloud Default subdomain: vp-a1b2c3d4 URL: https://vp-a1b2c3d4.app.vibepage.cloud/
vibepage deploy

Publish your UI

Run from your project folder. vibepage detects the static publish directory (dist/, build/, or project root), uploads it, and prints the live URL. Uses your default subdomain from registration — no name to pick.

$ vibepage deploy Detected static site at ./dist Deploying to subdomain: vp-a1b2c3d4 Deploy succeeded Live at: https://vp-a1b2c3d4.app.vibepage.cloud/
vibepage tunnel --target localhost:3000

Live demo from your laptop

Forwards your public subdomain to a local server while the command is running. When you stop it (Ctrl+C), traffic falls back to the last static deploy.

$ vibepage tunnel Tunnel online for vp-a1b2c3d4 Forwarding https://vp-a1b2c3d4.app.vibepage.cloud/ → localhost:3000 Press Ctrl+C to stop
vibepage status

Check your project

Shows the linked project name, URL, deploy status, and whether a tunnel is online.

$ vibepage status Name: vp-a1b2c3d4 Slug: vp-a1b2c3d4 Mode: static Status: live URL: https://vp-a1b2c3d4.app.vibepage.cloud/ Tunnel: offline
vibepage help

Show usage

Prints the same four-command usage summary in the terminal.

$ vibepage help