Configuration
Manage global CLI settings with devver config.
devver config <subcommand>The config command manages global CLI settings (e.g. the API URL). For project-level configuration, see the .devver.yaml reference.
Subcommands
init
Detects your project's framework and generates a .devver.yaml file in the current directory.
devver config initget <key>
Reads a single config value.
devver config get api-urlset <key> <value>
Writes a config value. The only currently supported key is api-url.
devver config set api-url https://api.my-devver-instance.com| Key | Description |
|---|---|
api-url | Base URL for the Devver API (useful for self-hosted instances) |
list
Displays all config values (falls back to defaults when no value is set).
devver config listunset <key>
Removes a config value, restoring the default.
devver config unset api-urlConfig file location
The global CLI config is stored in your home directory:
~/.devver/config.jsonProject-level config lives in .devver.yaml at the root of your project.