> ## Documentation Index
> Fetch the complete documentation index at: https://docs.kombify.io/llms.txt
> Use this file to discover all available pages before exploring further.

# stackkit setup

> Set up the owner account of an applied application

Set up the owner account of an applied application.

Run a Plan-declared setup action on the existing local application. Read the private credential JSON fields and file path from the selected application's setup guide or status action. Credentials are never written into lifecycle evidence. Re-running after interruption re-observes the application before completing the same pending setup operation.

```bash theme={null}
stackkit setup <workload> [flags]
```

| Flag                    | Type   | Default | Description                                                                                                |
| ----------------------- | ------ | ------- | ---------------------------------------------------------------------------------------------------------- |
| `--complete-onboarding` | bool   | —       | Complete the app user and administrator onboarding after verifying the owner login                         |
| `--credentials-file`    | string | —       | Workspace-relative private owner credential JSON file (defaults to the selected application's setup guide) |
| `--json`                | bool   | —       | Emit the secret-free verified setup result                                                                 |
| `--operation-id`        | string | —       | Resume a pending setup operation; defaults to the current pending setup or a new ID                        |
| `--owner-approve`       | bool   | —       | Approve this Plan-bound application setup                                                                  |

**Examples**

```bash theme={null}
# Create the Photos owner from the private credentials in .stackkit/setup/owner.json
stackkit setup photos --owner-approve

# Also finish the application's onboarding after the owner login is verified
stackkit setup photos --owner-approve --complete-onboarding

# Create the Files owner from a workspace-relative credentials file of your choice
stackkit setup files --owner-approve --credentials-file private/files-owner.json
```
