Configuration
Where the CLI stores its config, how to view it, and how to override anything per command.
Config file#
Default location is ~/.config/easyenv/config.yaml on macOS and Linux, and %APPDATA%\easyenv\config.yaml on Windows. Tokens are not stored here - they live in the OS keychain.
View and edit config#
bash
easyenv config view # print effective config
easyenv config path # print the config file path
easyenv config set server https://staging-api.easyenv.io
easyenv config unset serverResolution order#
The CLI resolves a setting in this order, first match wins:
- A command-line flag, e.g.
--server. - An environment variable, e.g.
EASYENV_SERVER. - The config file value.
- The built-in default.
