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