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 config list (Coming Soon)

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

List all configuration settings for your Wheels application.

Usage

wheels config list

Parameters

  • --environment - (Optional) Environment to display settings for: development, testing, production
  • --filter - (Optional) Filter results by this string
  • --show-sensitive - (Optional) Show sensitive information (passwords, keys, etc.)

Description

The wheels config list command displays all configuration settings for your Wheels application. It shows current values and helps you understand your application's configuration state.

Examples

List all settings

wheels config list

Filter by pattern

wheels config list --filter=cache
wheels config list --filter=database

Show sensitive values

wheels config list --show-sensitive

Environment-specific settings

wheels config list --environment=production
wheels config list --environment=testing

Combined options

wheels config list --environment=production --filter=cache --show-sensitive

Output Example

Wheels Configuration Settings
============================

Setting                          Value
-------------------------------- --------------------------------
dataSourceName                   wheels_dev
environment                      development
reloadPassword                   ********
showDebugInformation            true
showErrorInformation            true
cacheFileChecking               false
cacheQueries                    false
cacheActions                    false
urlRewriting                    partial
assetQueryString                true
assetPaths                      true

When using --show-sensitive, password values are displayed:

reloadPassword                   mySecretPassword123

Common Configuration Settings

The command displays all Wheels configuration settings including:

  • Database: dataSourceName, dataSourceUserName, dataSourcePassword
  • Cache: cacheQueries, cacheActions, cachePages, cachePartials
  • Security: reloadPassword, showDebugInformation, showErrorInformation
  • URLs/Routing: urlRewriting, assetQueryString, assetPaths
  • Environment: environment, hostName

Filtering

Use the --filter parameter to search for specific settings:

# Find all cache-related settings
wheels config list --filter=cache

# Find datasource settings
wheels config list --filter=datasource

Security

By default, sensitive values like passwords are masked with asterisks (********). Use --show-sensitive to display actual values:

# Show all settings including passwords
wheels config list --show-sensitive

Environment-Specific Settings

View settings for different environments:

# Production settings
wheels config list --environment=production

# Testing environment
wheels config list --environment=testing

Notes

  • Some settings require restart to take effect
  • Sensitive values are automatically hidden
  • Custom settings from plugins included
  • Performance impact minimal

See Also