Skip to content

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.

Terminal window
ironflow project <subcommand> [flags]

Subcommands:

SubcommandDescription
createCreate a new project
listList all projects
deleteDelete a project

Create a new project with the given name within the current organization.

Terminal window
ironflow project create <name> [flags]

Arguments:

ArgumentRequiredDescription
nameYesName for the new project

Flags:

FlagShortTypeDefaultDescription
--server-sstringServer URL override

Examples:

Terminal window
ironflow project create my-project
ironflow project create backend-service --server http://localhost:9000

List all projects with their IDs, names, and creation dates.

Terminal window
ironflow project list [flags]

Flags:

FlagShortTypeDefaultDescription
--jsonboolfalseOutput as JSON
--server-sstringServer URL override

Output:

ID NAME CREATED
proj_default_default default 2026-01-01T00:00:00Z

Examples:

Terminal window
ironflow project list
ironflow project list --json

Delete a project by its ID.

Terminal window
ironflow project delete <id> [flags]

Arguments:

ArgumentRequiredDescription
idYesProject ID to delete

Flags:

FlagShortTypeDefaultDescription
--server-sstringServer URL override

Examples:

Terminal window
ironflow project delete proj_abc123