braid projects
Discover and manage projects from the CLI.
Subcommands
| Subcommand | Description |
|---|---|
list | List available personal and org projects |
get | Get a project by ID |
create | Create a new project |
update | Update a project |
remove | Delete a project |
Common options
Most project subcommands accept:
| Option | Description |
|---|---|
-s, --server <url> | Override the braid server URL |
--api-key <token> | Override the API key |
--json | Output JSON |
Subcommand options
| Subcommand | Required options | Additional options |
|---|---|---|
list | none | common options only |
get | --id <id> | common options only |
create | --name <name> | --description <description>, --org-id <id> |
update | --id <id> | --name <name>, --description <description> |
remove | --id <id> | -y, --yes |
Examples
List all projects:
braid projects listCreate an org project:
braid projects create --name "backend-api" --org-id <org-id>Delete a project:
braid projects remove --id <project-id> --yes