braid docs

braid projects

Discover and manage projects from the CLI.

Subcommands

SubcommandDescription
listList available personal and org projects
getGet a project by ID
createCreate a new project
updateUpdate a project
removeDelete a project

Common options

Most project subcommands accept:

OptionDescription
-s, --server <url>Override the braid server URL
--api-key <token>Override the API key
--jsonOutput JSON

Subcommand options

SubcommandRequired optionsAdditional options
listnonecommon 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 list

Create an org project:

braid projects create --name "backend-api" --org-id <org-id>

Delete a project:

braid projects remove --id <project-id> --yes