Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

SHOW CONSTANTS

Synopsis

SHOW CONSTANTS [IN <module>]

Description

Lists constants defined in the project. Without the IN clause, lists all constants across all modules. With IN <module>, restricts the listing to constants in the specified module.

Constants are named values (strings, integers, booleans, etc.) that can be configured per deployment environment. They are typically used for API URLs, feature flags, and configuration values.

Parameters

module
The name of the module to filter by. Only constants belonging to this module are shown.

Examples

List all constants in the project:

SHOW CONSTANTS

List constants in a specific module:

SHOW CONSTANTS IN MyModule

See Also

SHOW MODULES, SHOW STRUCTURE