flexkit project
Manages projects in your Flexkit account.
Synopsis
flexkit project <subcommand> [arguments] [options]Subcommands
project ls
List projects, or fetch a single project by name or id.
flexkit project ls [nameOrId] [--json] [--scope <scope>]Examples
# List projects
flexkit project ls
# List projects for a specific scope
flexkit project ls --scope my-team
# Get one project
flexkit project ls my-project
# JSON output
flexkit project ls --jsonproject add
Create a project.
flexkit project add <name> [--json] [--scope <scope>]Examples
# Create project
flexkit project add my-project
# Create in a team scope
flexkit project add my-project --scope team-id-or-name
# JSON output
flexkit project add my-project --jsonproject rm
Remove a project by id or name. The CLI prompts for confirmation before deletion.
flexkit project rm <nameOrId> [--json] [--scope <scope>]Examples
# Remove project
flexkit project rm my-project
# Remove from specific scope
flexkit project rm my-project --scope team-id-or-name
# JSON output
flexkit project rm my-project --jsonOptions
| Option | Description |
|---|---|
--json | Output API response as JSON. |
--scope <scope> | Target a specific scope/team. |
You can also use all global options.
Last updated on