Account Settings
Account settings control your personal profile, authentication, and API access. These settings apply to your individual account across all teams you belong to.
Profile Settings
Update your basic account information:
- Name -- Your display name shown in team member lists and activity logs
- Email -- Your login email and the address used for notifications and invitations
To update your profile:
- Click your profile in the Appliku dashboard
- Go to Account Settings
- Update your name or email
- Save changes
Password Management
Change your account password:
- Go to Account Settings
- Navigate to the Password section
- Enter your current password
- Enter and confirm your new password
- Save
Use a strong, unique password. Consider using a password manager to generate and store complex passwords.
Two-Factor Authentication (2FA)
Add an extra layer of security to your account with two-factor authentication. When enabled, you must provide a time-based one-time password (TOTP) from an authenticator app in addition to your password when logging in.
Enabling 2FA
- Go to Account Settings
- Navigate to the Two-Factor Authentication section
- Click Enable 2FA
- Scan the QR code with your authenticator app (e.g., Google Authenticator, Authy, 1Password)
- Enter the verification code from your app to confirm
- Save your recovery codes in a secure location
Store your recovery codes safely. If you lose access to your authenticator app and do not have recovery codes, you will be locked out of your account.
Disabling 2FA
- Go to Account Settings > Two-Factor Authentication
- Click Disable 2FA
- Confirm with your current password or TOTP code
API Token Management
API tokens allow programmatic access to the Appliku API. They are used by the Appliku CLI and for custom integrations.
Creating an API Token
- Go to Account Settings
- Navigate to the API Tokens section
- Click Create Token
- Give the token a descriptive name (e.g., "CLI access", "CI/CD pipeline")
- Copy the token immediately -- it is only shown once
Using Your API Token
With the Appliku CLI:
# Set as environment variable
export APPLIKU_TOKEN=your-token-here
appliku apps list
# Or save to config file
appliku auth login
The CLI resolves tokens in this order:
- Explicit parameter passed to the command
APPLIKU_TOKENenvironment variable- Config file at
~/.config/appliku/config.toml
With the API directly:
curl -H "Authorization: Bearer your-token-here" \
https://api.appliku.com/api/v1/teams/
Revoking a Token
- Go to Account Settings > API Tokens
- Find the token you want to revoke
- Click Delete
- The token is immediately invalidated
Revoking a token immediately breaks any integrations using it. Update your CLI configuration or CI/CD pipelines before revoking tokens that are in active use.
Next Steps
- Members & Roles -- Team access management
- Teams Overview -- How teams work