- CLI Reference
- Commands
- ironflow project
ironflow project
Manage projects. Projects group related environments within an organization (e.g., a microservice or team boundary). The resource hierarchy is Organization → Project → Environment.
ironflow project <subcommand> [flags]Subcommands:
| Subcommand | Description |
|---|---|
create | Create a new project |
list | List all projects |
delete | Delete a project |
ironflow project create
Section titled “ironflow project create”Create a new project with the given name within the current organization.
ironflow project create <name> [flags]Arguments:
| Argument | Required | Description |
|---|---|---|
name | Yes | Name for the new project |
Flags:
| Flag | Short | Type | Default | Description |
|---|---|---|---|---|
--server | -s | string | Server URL override |
Examples:
ironflow project create my-projectironflow project create backend-service --server http://localhost:9000ironflow project list
Section titled “ironflow project list”List all projects with their IDs, names, and creation dates.
ironflow project list [flags]Flags:
| Flag | Short | Type | Default | Description |
|---|---|---|---|---|
--json | bool | false | Output as JSON | |
--server | -s | string | Server URL override |
Output:
ID NAME CREATEDproj_default_default default 2026-01-01T00:00:00ZExamples:
ironflow project listironflow project list --jsonironflow project delete
Section titled “ironflow project delete”Delete a project by its ID.
ironflow project delete <id> [flags]Arguments:
| Argument | Required | Description |
|---|---|---|
id | Yes | Project ID to delete |
Flags:
| Flag | Short | Type | Default | Description |
|---|---|---|---|---|
--server | -s | string | Server URL override |
Examples:
ironflow project delete proj_abc123