Project Commands: project
Commands
| Command | Usage | Description |
|---|---|---|
list | bohr project list | List accessible projects |
get | bohr project get <id> | Get project details |
members | bohr project members <id> | List project members |
create | bohr project create [flags] | Create a project |
delete | bohr project delete <project_id> | Delete a project |
List and inspect
bohr project list -o json
bohr project get 123
bohr project members 123
Create
bohr project create --name molecular-dynamics
bohr project create --name teaching --month_cost_limit 5000 --total_cost_limit 10000
Flags are -n, --name (default default), -m, --month_cost_limit, and -t, --total_cost_limit.
Delete
bohr project delete 123
The project ID is a positional argument. -p is the global profile flag and cannot be used for the project ID. Deletion is destructive and requires confirmation.