# CLI Commands Reference Command-line interface for VAPORA workflow management. ## Installation ### Build from Source ```bash cd crates/vapora-cli cargo build --release ``` Binary location: `target/release/vapora` ### Add to PATH ```bash # Copy to local bin cp target/release/vapora ~/.local/bin/ # Or symlink ln -s $(pwd)/target/release/vapora ~/.local/bin/vapora ``` ### Verify Installation ```bash vapora --version ``` ## Configuration ### Environment Variables ```bash # Backend API URL (default: http://localhost:8001) export VAPORA_API_URL="http://localhost:8001" ``` ### Command-Line Flags ```bash # Override API URL per command vapora --api-url http://production:8001 workflow list ``` ## Commands ### vapora workflow Workflow orchestration commands. #### start Start a new workflow from template. **Usage**: ```bash vapora workflow start --template