arrow config
Manage arrow configuration - view, validate, and modify project settings from the command line.
Syntax
bash
arrow config [command] [flags]
Subcommands
| Command | Description |
|---|---|
view | Display the current configuration |
validate | Validate the configuration file for errors |
set | Set a configuration value (key=value) |
get | Get a specific configuration value |
env | Show environment variable overrides |
Flags
| Flag | Type | Default | Description |
|---|---|---|---|
--file | string | arrow.yaml | Path to config file |
--format | string | yaml | Output format (yaml, json, toml) |
Examples
View the current configuration:
terminal
$ arrow config view
version: "1"
project:
name: my-app
language: node
pipelines:
build:
steps:
- name: install
run: npm install
Validate the configuration:
terminal
$ arrow config validate
Configuration is valid
Set a configuration value:
bash
arrow config set project.language=python
Get a specific value:
bash
arrow config get project.name