Skip to content

config list

Display all configuration settings, their current values, and their sources (environment variable, YAML file, or default).

The Source column shows where each value comes from:

  • env (...) - Set via environment variable
  • .env - Set via .env file
  • yaml - Set in ~/.fw/config.yml
  • default - Using the built-in default value

Examples

# List all configuration settings
flyw config list

# Use with grep to find specific settings
flyw config list | grep timeout

Usage