# create

## Usage

```bash
bdy pipeline create|add [options]
```

## Options

| **Option** | **Description** |
| :--- | :--- |
| `-w, --workspace <domain>` | Workspace URL handle. Can be set via variable: BUDDY_WORKSPACE |
| `-p, --project <name>` | Project name. Can be set via variable: BUDDY_PROJECT |
| `-n, --name <name>` | Name of the pipeline |
| `-i, --identifier <identifier>` | Human-readable ID of the pipeline |
| `--format <text|json>` | Output format: json, text. Default: text |
| `--yaml <content|@path>` | Complete pipeline YAML. To specify file use @path/to/file format in value |
| `-h, --help` | display help for command |

## Examples

### ## pipeline create with name

```bash
bdy pip create -n name
```

### ## pipeline create with yaml

```bash
bdy pip create --yaml @path/to/yaml
```

### ## pipeline create with name, output json

```bash
bdy pip create -n name --format json
```


---
Original source: https://buddy.works/docs/cli/pipeline/create