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 restart (Coming Soon)
This command may not work as expected. A complete and stable version is coming soon.
Restart the Wheels development server and reload the application.
Synopsis
wheels server restart [options]
Description
The wheels server restart
command restarts a running CommandBox server and automatically reloads the Wheels application. This ensures that both server-level and application-level changes are picked up.
Options
name
- Type: String
- Description: Name of the server to restart
- Example:
wheels server restart name=myapp
--force
- Type: Boolean flag
- Description: Force restart even if server appears stopped
- Example:
wheels server restart --force
Examples
# Restart the default server
wheels server restart
# Restart a specific named server
wheels server restart name=myapp
# Force restart
wheels server restart --force
What It Does
- Stops the running server
- Starts the server again with the same configuration
- Automatically runs
wheels reload
to refresh the application - Confirms successful restart
Notes
- This command is particularly useful when you've made changes to server configuration or installed new dependencies
- The automatic application reload ensures that Wheels picks up any code changes
- If the reload fails, you may need to manually refresh your browser
Related Commands
wheels server start
- Start the serverwheels server stop
- Stop the serverwheels server status
- Check server statuswheels reload
- Reload just the application