arrow config

Manage arrow configuration - view, validate, and modify project settings from the command line.

Syntax

bash
arrow config [command] [flags]

Subcommands

CommandDescription
viewDisplay the current configuration
validateValidate the configuration file for errors
setSet a configuration value (key=value)
getGet a specific configuration value
envShow environment variable overrides

Flags

FlagTypeDefaultDescription
--filestringarrow.yamlPath to config file
--formatstringyamlOutput 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