Devver Docs

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 init

get <key>

Reads a single config value.

devver config get api-url

set <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
KeyDescription
api-urlBase 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 list

unset <key>

Removes a config value, restoring the default.

devver config unset api-url

Config file location

The global CLI config is stored in your home directory:

~/.devver/config.json

Project-level config lives in .devver.yaml at the root of your project.

On this page