Documentation Index
Fetch the complete documentation index at: https://docs.nexus.westyx.cloud/llms.txt
Use this file to discover all available pages before exploring further.
What are configs?
Configs are typed key-value settings for your service - database hosts, API base URLs, timeout values, and anything else that should vary per environment without requiring a code change. Unlike secrets, configs are:- Not encrypted - suitable for non-sensitive values
- Available to both backend and frontend services
- Typed:
string,number,boolean,json - Capable of referencing secrets and feature flags by key
Key names
Config keys follow the same pattern as secrets:^[a-zA-Z]([a-zA-Z0-9_.:-]*[a-zA-Z0-9])?$
Examples: database.host, api.timeout_ms, feature.max_retries
Template references
Configs can embed the resolved values of secrets and flags using{{...}} syntax:
| Syntax | Resolves to |
|---|---|
{{secret:KEY}} | Current value of the named secret |
{{flag:KEY}} | true or false - current state of the named flag |
