Quick Start

After installation, verify that arrow is available and try a few basic commands.

Verify Installation

Terminal
bash
arrow --version
# arrow v1.4.2

Initialize a Project

Create a new arrow project in the current directory:

Terminal
bash
arrow init my-project
# ✓ Initialized project at ./my-project

Run a Pipeline

arrow projects define pipelines in their configuration. Run the default build pipeline:

Terminal
bash
arrow run build
# ▶ Running pipeline: build
# [1/3] Compiling...
# [2/3] Testing...
# [3/3] Packaging...
# ✓ Done in 2.34s

Next Steps

Explore the Commands Reference to learn about all available commands, or read the Configuration section to customize your pipelines.