Loading...

CLI Overview

Quick Start Guide

wheels info

wheels reload

wheels deps

wheels destroy

wheels watch

wheels generate app

wheels generate app-wizard

wheels generate controller

wheels generate model

wheels generate view

wheels generate property

wheels generate route

wheels generate resource

wheels generate api-resource

wheels generate frontend

wheels generate test

wheels generate snippets

wheels scaffold

wheels test

wheels test run

wheels test coverage

wheels test debug

wheels config list

wheels config set

wheels config env

wheels env

wheels env setup

wheels env list

wheels env switch

wheels environment

wheels console

wheels runner

wheels server

wheels server start

wheels server stop

wheels server restart

wheels server status

wheels server log

wheels server open

wheels plugins

wheels plugins list

wheels plugins install

wheels plugins remove

wheels analyze

wheels analyze code

wheels analyze performance

wheels analyze security

wheels security

wheels security scan

wheels optimize

wheels optimize performance

wheels docs

wheels docs generate

wheels docs serve

wheels ci init

wheels docker init

wheels docker deploy

wheels deploy

wheels deploy audit

wheels deploy exec

wheels deploy hooks

wheels deploy init

wheels deploy lock

wheels deploy logs

wheels deploy proxy

wheels deploy push

wheels deploy rollback

wheels deploy secrets

wheels deploy setup

wheels deploy status

wheels deploy stop

Configuration Management

Creating Commands

Service Architecture

Migrations Guide

Testing Guide

Ask or search...
Ctrl K
Loading...

wheels server open (Coming Soon)

This command may not work as expected. A complete and stable version is coming soon.

Open the Wheels application in a web browser.

Synopsis

wheels server open [path] [options]

Description

The wheels server open command opens your Wheels application in a web browser. It automatically detects the server URL and can open specific paths within your application.

Arguments

path

  • Type: String
  • Default: /
  • Description: URL path to open (e.g., /admin, /users)
  • Example: wheels server open /admin

Options

--browser

  • Type: String
  • Description: Specific browser to use (chrome, firefox, safari, etc.)
  • Example: wheels server open --browser=firefox

name

  • Type: String
  • Description: Name of the server to open
  • Example: wheels server open name=myapp

Examples

# Open application homepage
wheels server open

# Open admin panel
wheels server open /admin

# Open users listing
wheels server open /users

# Open in specific browser
wheels server open --browser=chrome

# Open path in Firefox
wheels server open /dashboard --browser=firefox

Supported Browsers

The --browser option supports:

  • chrome - Google Chrome
  • firefox - Mozilla Firefox
  • safari - Safari (macOS)
  • edge - Microsoft Edge
  • opera - Opera

If no browser is specified, your system's default browser is used.

Notes

  • The command first checks if the server is running before attempting to open
  • If the server isn't running, it will suggest starting it first
  • The path argument should start with / for proper URL construction
  • The browser must be installed on your system to use the --browser option

Error Messages

"Server doesn't appear to be running"

The server must be started before you can open it in a browser:

wheels server start
wheels server open

See Also