Admin Onboarding
Complete these four steps before inviting members.
Step 1: Create a workspace
Set the workspace defaults:
bun run aw workspace create \ --name "My Workspace" \ --email admin@example.com \ --currency USD \ --week-start mondayAvailable options:
--currency: USD, EUR, GBP, IDR, JPY, etc.--week-start: monday or sunday
Step 2: Invite members
Invite users to the workspace:
bun run aw workspace invite \ --workspace-id <workspace-id> \ --email user@example.comList workspace members:
bun run aw workspace members list --workspace-id <workspace-id>Step 3: Configure security
Enable MFA for your admin account:
- Go to Profile → Security
- Click Enable MFA
- Scan the QR code with your authenticator app
- Enter the verification code
Generate API keys for programmatic access:
bun run aw admin create-api-key \ --workspace-id <workspace-id> \ --user-id <user-id> \ --name "Production API Key"Step 4: Document runbooks
Create internal documentation for:
- Member invitation and revocation
- Workspace setting changes
- Emergency contacts and escalation
Continue to Deployment Guide.