veirox project
Manage projects
Synopsis
veirox project <subcommand> [args] [flags]
Description
Manage projects
Subcommands
| Command | Description |
|---|---|
veirox project create <name> | Create a project |
veirox project delete <project-id> | Delete a project |
veirox project info <project-id|slug> | Show project details |
veirox project list | List projects |
veirox project members | Manage project members |
veirox project update <project-id> | Update a project |
veirox project create <name>
Create a project
| Flag | Type | Default | Description |
|---|---|---|---|
--color | string | — | project color hex |
--description | string | — | project description |
--slug | string | — | project slug |
veirox project create "Core Platform" --slug core-platform
veirox project delete <project-id>
Delete a project
| Flag | Type | Default | Description |
|---|---|---|---|
--yes | bool | false | confirm deletion |
veirox project delete 00000000-0000-4000-8000-000000000001 --yes
veirox project info <project-id|slug>
Show project details
veirox project info 00000000-0000-4000-8000-000000000001
veirox project list
List projects
| Flag | Type | Default | Description |
|---|---|---|---|
--limit | int | 50 | max number of projects |
--offset | int | 0 | offset from start |
veirox project list --limit 20 --offset 0
veirox project members
Manage project members
veirox project update <project-id>
Update a project
| Flag | Type | Default | Description |
|---|---|---|---|
--color | string | — | project color hex |
--description | string | — | project description |
--name | string | — | project name |
--slug | string | — | project slug |
veirox project update 00000000-0000-4000-8000-000000000001 --name "New Name"
Exit codes
| Code | Meaning |
|---|---|
0 | Success. |
1 | Generic error (network, API 5xx). |
2 | Validation error (bad flag, missing required arg). |
3 | Unauthenticated — run veirox login or set VEIROX_API_KEY. |
4 | Not found (resource does not exist in this project). |
5 | Permission denied (your role / API key lacks the scope). |