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 db create
wheels db drop
wheels db setup
wheels db reset
wheels db status
wheels db version
wheels db rollback
wheels db seed
wheels db dump
wheels db restore
wheels db shell
wheels db schema
wheels dbmigrate info
wheels dbmigrate latest
wheels dbmigrate up
wheels dbmigrate down
wheels dbmigrate reset
wheels dbmigrate exec
wheels dbmigrate create blank
wheels dbmigrate create table
wheels dbmigrate create column
wheels dbmigrate remove table
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
Object Relational Mapping
Creating Records
Reading Records
Updating Records
Deleting Records
Column Statistics
Dynamic Finders
Getting Paginated Data
Associations
Nested Properties
Object Validation
Object Callbacks
Calculated Properties
Transactions
Dirty Records
Soft Delete
Automatic Time Stamps
Using Multiple Data Sources
wheels server status (Coming Soon)
This command may not work as expected. A complete and stable version is coming soon.
Show detailed status of the Wheels development server.
Synopsis
wheels server status [options]
Description
The wheels server status
command displays the current status of your CommandBox server along with Wheels-specific information. It provides more context than the standard server status command.
Options
name
- Type: String
- Description: Name of the server to check
- Example:
wheels server status name=myapp
--json
- Type: Boolean flag
- Description: Output status in JSON format
- Example:
wheels server status --json
--verbose
- Type: Boolean flag
- Description: Show detailed server information
- Example:
wheels server status --verbose
Examples
# Check default server status
wheels server status
# Check specific server
wheels server status name=myapp
# Get JSON output for scripting
wheels server status --json
# Show verbose details
wheels server status --verbose
Output Information
When the server is running, displays:
- Server running status
- URL and port information
- Wheels framework version
- Application root directory
- Quick action suggestions
Example output:
Wheels Server Status
===================
Status: Running
URL: http://127.0.0.1:60000
PID: 12345
Wheels Application Info:
Wheels Version: 2.5.0
Application Root: /Users/you/myapp
Quick Actions:
wheels server open - Open in browser
wheels server log - View logs
wheels reload - Reload application
Notes
- The command enhances CommandBox's native status with Wheels-specific information
- Use
--json
format when integrating with scripts or other tools - The verbose flag shows additional server configuration details
Related Commands
wheels server start
- Start the serverwheels server stop
- Stop the serverwheels server log
- View server logs